diff options
author | 2016-06-10 07:50:20 -0400 | |
---|---|---|
committer | 2016-06-10 22:55:00 -0400 | |
commit | 6bea81d33a449f2892d1527f6acc1e6ae8057726 (patch) | |
tree | 7bfb7e55dd6b522484beed37dd16933b3afabebc /src/osd/sdl/window.h | |
parent | 2030b4f3e5819be4a9c73216c1e39f5edbf41b4a (diff) |
Unify window_list in Windows and SDL OSD
Diffstat (limited to 'src/osd/sdl/window.h')
-rw-r--r-- | src/osd/sdl/window.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/osd/sdl/window.h b/src/osd/sdl/window.h index ed03359d0ae..ae42d1ccd7a 100644 --- a/src/osd/sdl/window.h +++ b/src/osd/sdl/window.h @@ -49,7 +49,7 @@ public: void toggle_full_screen(); void modify_prescale(int dir); void resize(INT32 width, INT32 height); - void destroy(); + void destroy() override; void capture_pointer() override; void release_pointer() override; @@ -122,13 +122,6 @@ struct osd_draw_callbacks }; //============================================================ -// GLOBAL VARIABLES -//============================================================ - -// window - list -extern std::list<std::shared_ptr<sdl_window_info>> sdl_window_list; - -//============================================================ // PROTOTYPES //============================================================ |