diff options
Diffstat (limited to 'src/osd/sdl/window.cpp')
-rw-r--r-- | src/osd/sdl/window.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/sdl/window.cpp b/src/osd/sdl/window.cpp index 8c10d72e076..b7b1bee8f7b 100644 --- a/src/osd/sdl/window.cpp +++ b/src/osd/sdl/window.cpp @@ -311,7 +311,7 @@ void sdl_osd_interface::window_exit() while (!sdl_window_list.empty()) { auto window = sdl_window_list.front(); - + // Part of destroy removes the window from the list window->destroy(); } @@ -364,7 +364,7 @@ void sdl_window_info::hide_pointer() void sdl_window_info::show_pointer() { SDL_ShowCursor(SDL_ENABLE); - + } @@ -1325,11 +1325,11 @@ osd_dim sdl_window_info::get_max_bounds(int constrain) sdl_window_info::sdl_window_info(running_machine &a_machine, int index, osd_monitor_info *a_monitor, const osd_window_config *config) : osd_window(), m_next(nullptr), m_startmaximized(0), - // Following three are used by input code to defer resizes + // Following three are used by input code to defer resizes m_minimum_dim(0,0), m_windowed_dim(0,0), m_rendered_event(0, 1), m_target(nullptr), m_extra_flags(0), - m_machine(a_machine), m_monitor(a_monitor), m_fullscreen(0) + m_machine(a_machine), m_monitor(a_monitor), m_fullscreen(0) { m_win_config = *config; m_index = index; |