mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
fixed compiling with optimizations
svn path=/trunk/; revision=13361
This commit is contained in:
parent
a725df1b30
commit
b3f22aba55
1 changed files with 2 additions and 2 deletions
|
@ -900,7 +900,7 @@ GC_blit_from_DIB(GC *Gc,
|
|||
{
|
||||
int Result;
|
||||
HDC hSrcDC;
|
||||
HBITMAP hOldBitmap;
|
||||
HBITMAP hOldBitmap = NULL;
|
||||
|
||||
DBG("GC_blit_from_DIB(0x%x, 0x%x, 0x%x, 0x%x)\n", Gc, Dib, X, Y);
|
||||
|
||||
|
@ -1165,7 +1165,7 @@ GI_messagebox(s_window *Window,
|
|||
MbFlags = MB_YESNOCANCEL;
|
||||
else if (Flags & WGF_MB_YESNO)
|
||||
MbFlags = MB_YESNO;
|
||||
else if (Flags & WGF_MB_OK)
|
||||
else /* if (Flags & WGF_MB_OK) */
|
||||
MbFlags = MB_OK;
|
||||
MbFlags |= (Flags & WGF_MB_ICON_INFO) ? MB_ICONASTERISK : 0;
|
||||
MbFlags |= (Flags & WGF_MB_ICON_ASK) ? MB_ICONQUESTION : 0;
|
||||
|
|
Loading…
Reference in a new issue