Merge pull request #850 from ripesunflower/fix

Move var to begining of gfx_directx_acknowledge_resize() scope
This commit is contained in:
David Capello 2015-11-04 09:09:31 -03:00
commit b5e6d4af6a

View File

@ -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);