From d96c7bff4547cefd4cd9ee1b62c593fd0c032202 Mon Sep 17 00:00:00 2001 From: ripesunflower Date: Wed, 4 Nov 2015 09:55:10 +0300 Subject: [PATCH] Move var to beginnig of scope I get error without it in VS2013 --- src/allegro/src/win/wddwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allegro/src/win/wddwin.c b/src/allegro/src/win/wddwin.c index 50a619ee8..d879e3d4e 100644 --- a/src/allegro/src/win/wddwin.c +++ b/src/allegro/src/win/wddwin.c @@ -784,6 +784,7 @@ static BITMAP *gfx_directx_acknowledge_resize(void) int w, h; RECT rc; BITMAP *new_screen; + BITMAP* tmp = NULL; GetClientRect(allegro_wnd, &rc); w = rc.right; @@ -792,7 +793,6 @@ static BITMAP *gfx_directx_acknowledge_resize(void) w -= (w % 4); /* Copy current content in screen */ - BITMAP* tmp = NULL; if (screen) tmp = create_bitmap_ex(color_depth, w, h);