(ui_win32_application.c) Indenting cleanups

This commit is contained in:
twinaphex 2016-06-07 17:32:37 +02:00
parent f4c3a41f84
commit dbf59a72bd

View File

@ -31,11 +31,11 @@ static void ui_application_win32_process_events(void)
{
MSG msg2;
if (PeekMessage(&msg2, 0, 0, 0, PM_REMOVE))
{
if (PeekMessage(&msg2, 0, 0, 0, PM_REMOVE))
{
TranslateMessage(&msg2);
DispatchMessage (&msg2);
}
}
}
}