mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-05-10 11:01:36 +00:00
fix whitespace
This commit is contained in:
parent
60e737e4ee
commit
17b8b4445b
1 changed files with 5 additions and 5 deletions
|
|
@ -111,11 +111,11 @@ ultramodern::WindowHandle create_window(ultramodern::gfx_callbacks_t::gfx_data_t
|
||||||
window = SDL_CreateWindow("Zelda 64: Recompiled", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1600, 960, SDL_WINDOW_RESIZABLE );
|
window = SDL_CreateWindow("Zelda 64: Recompiled", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1600, 960, SDL_WINDOW_RESIZABLE );
|
||||||
#if defined(__linux__) // TODO: Remove once RT64 gets native fullscreen support on Linux
|
#if defined(__linux__) // TODO: Remove once RT64 gets native fullscreen support on Linux
|
||||||
SetImageAsIcon("icons/512.png",window);
|
SetImageAsIcon("icons/512.png",window);
|
||||||
if (ultramodern::get_graphics_config().wm_option == ultramodern::WindowMode::Fullscreen) {
|
if (ultramodern::get_graphics_config().wm_option == ultramodern::WindowMode::Fullscreen) {
|
||||||
SDL_SetWindowFullscreen(window,SDL_WINDOW_FULLSCREEN_DESKTOP);
|
SDL_SetWindowFullscreen(window,SDL_WINDOW_FULLSCREEN_DESKTOP);
|
||||||
} else {
|
} else {
|
||||||
SDL_SetWindowFullscreen(window,SDL_WINDOW_BORDERLESS);
|
SDL_SetWindowFullscreen(window,SDL_WINDOW_BORDERLESS);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (window == nullptr) {
|
if (window == nullptr) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue