summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/window.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-01-16 04:12:04 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-01-16 04:12:04 +0000
commitaebc07a8971238b115210e89eca8e7824eca8dbc (patch)
treea7157331b3813365da7703902380ac6309f5e934 /src/osd/sdl/window.h
parentf6c832ea90a9c69c95b4006ff328867bb41ebe5c (diff)
Cleanups and version bump.
Diffstat (limited to 'src/osd/sdl/window.h')
-rw-r--r--src/osd/sdl/window.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/osd/sdl/window.h b/src/osd/sdl/window.h
index eea5ba4bf4a..96ebc92bc7c 100644
--- a/src/osd/sdl/window.h
+++ b/src/osd/sdl/window.h
@@ -37,10 +37,10 @@ struct _sdl_window_info
{
// Pointer to next window
sdl_window_info * next;
-
+
// Pointer to machine
running_machine * machine;
-
+
// Draw Callbacks
int (*create)(sdl_window_info *window, int width, int height);
void (*resize)(sdl_window_info *window, int width, int height);
@@ -58,7 +58,7 @@ struct _sdl_window_info
sdl_monitor_info * monitor;
int fullscreen;
int index;
-
+
// diverse flags
int minwidth, minheight;
int maxwidth, maxheight;
@@ -86,13 +86,13 @@ struct _sdl_window_info
int totalColors; // total colors from machine/sdl_window_config
int start_viewscreen;
-
+
// per window modes ...
int scale_mode;
-
+
// GL specific
int prescale;
-
+
#if (SDL_VERSION_ATLEAST(1,3,0))
// Needs to be here as well so we can identify window
SDL_WindowID window_id;