Fix some indentation shit

This commit is contained in:
Lynix 2019-03-26 19:09:46 +01:00
parent 00ca0248c6
commit c05d39ed28
2 changed files with 3 additions and 3 deletions

View File

@ -292,5 +292,5 @@ namespace Nz
} }
else else
NazaraError("Invalid window handle"); NazaraError("Invalid window handle");
} }
} }

View File

@ -71,8 +71,8 @@ namespace Nz
win32Mode.dmBitsPerPel = mode.bitsPerPixel; win32Mode.dmBitsPerPel = mode.bitsPerPixel;
win32Mode.dmPelsHeight = mode.height; win32Mode.dmPelsHeight = mode.height;
win32Mode.dmPelsWidth = mode.width; win32Mode.dmPelsWidth = mode.width;
win32Mode.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT; win32Mode.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;
win32Mode.dmSize = sizeof(DEVMODE); win32Mode.dmSize = sizeof(DEVMODE);
if (ChangeDisplaySettings(&win32Mode, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) if (ChangeDisplaySettings(&win32Mode, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL)
{ {