From 55dab1ffe28beaf3aaccf6b980579f9d453b5b0d Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 27 Dec 2004 20:03:53 +0000 Subject: [PATCH] Date: Fri, 24 Dec 2004 23:32:06 -0500 From: Mike Frysinger Subject: [SDL] minor fix for gcc-2.x building in src/video/directfb/SDL_DirectFB_video.c, some variables are not declared at the beginning of scope ... newer gcc's will accept this, but gcc-2.x does not find attached a simple patch by Matt Taylor to resolve this http://bugs.gentoo.org/show_bug.cgi?id=75392 --- src/video/directfb/SDL_DirectFB_video.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/directfb/SDL_DirectFB_video.c b/src/video/directfb/SDL_DirectFB_video.c index e27824df7..3028d2afe 100644 --- a/src/video/directfb/SDL_DirectFB_video.c +++ b/src/video/directfb/SDL_DirectFB_video.c @@ -468,6 +468,9 @@ int DirectFB_VideoInit(_THIS, SDL_PixelFormat *vformat) if (HIDDEN->enable_mga_crtc2) { + DFBDisplayLayerConfig dlc; + DFBDisplayLayerConfigFlags failed; + ret = dfb->GetDisplayLayer (dfb, 2, &HIDDEN->c2layer); if (ret) { @@ -492,9 +495,6 @@ int DirectFB_VideoInit(_THIS, SDL_PixelFormat *vformat) HIDDEN->c2layer->SetOpacity(HIDDEN->c2layer, 0x0); /* Init the surface here as it got a fixed size */ - DFBDisplayLayerConfig dlc; - DFBDisplayLayerConfigFlags failed; - dlc.flags = DLCONF_PIXELFORMAT | DLCONF_BUFFERMODE | DLCONF_OPTIONS; dlc.buffermode = DLBM_BACKVIDEO; dlc.options = DLOP_FLICKER_FILTERING;