summaryrefslogtreecommitdiff
path: root/src/i_video.h
diff options
context:
space:
mode:
authorSimon Howard2011-10-17 18:51:27 +0000
committerSimon Howard2011-10-17 18:51:27 +0000
commit7a8b8e57e7bd6b6a61b8492031bf5e995272e6bf (patch)
treecc5f64c1e9d6b1bd04e401f5a98518f06ac49b0b /src/i_video.h
parent854cb8073a336455d0bcd9b6a40d67c1b4226bb3 (diff)
downloadchocolate-doom-7a8b8e57e7bd6b6a61b8492031bf5e995272e6bf.tar.gz
chocolate-doom-7a8b8e57e7bd6b6a61b8492031bf5e995272e6bf.tar.bz2
chocolate-doom-7a8b8e57e7bd6b6a61b8492031bf5e995272e6bf.zip
Always show the Strife intro splash screen in windowed mode, and finish
the splash screen before network startup. Subversion-branch: /branches/v2-branch Subversion-revision: 2435
Diffstat (limited to 'src/i_video.h')
-rw-r--r--src/i_video.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/i_video.h b/src/i_video.h
index 272ffb08..7cc45dc9 100644
--- a/src/i_video.h
+++ b/src/i_video.h
@@ -78,6 +78,7 @@ typedef boolean (*grabmouse_callback_t)(void);
// and sets up the video mode
void I_InitGraphics (void);
+void I_GraphicsCheckCommandLine(void);
void I_ShutdownGraphics(void);
@@ -125,5 +126,10 @@ extern boolean screensaver_mode;
extern int usegamma;
extern byte *I_VideoBuffer;
-#endif
+extern int screen_width;
+extern int screen_height;
+extern int screen_bpp;
+extern int fullscreen;
+extern int aspect_ratio_correct;
+#endif