aboutsummaryrefslogtreecommitdiff
path: root/windows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'windows.cpp')
-rw-r--r--windows.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/windows.cpp b/windows.cpp
index c7b5ed5a68..7890054c27 100644
--- a/windows.cpp
+++ b/windows.cpp
@@ -45,7 +45,7 @@
#define BITS_PER_SAMPLE 16
static bool shutdown;
-
+static unsigned int scale;
#if USE_GDI
typedef struct DIB {
@@ -446,9 +446,10 @@ void waitForTimer(Scumm *s, int delay) {
}
}
-void initGraphics(Scumm *s, bool fullScreen) {
+void initGraphics(Scumm *s, bool fullScreen, unsigned int scaleFactor) {
if(fullScreen)
warning("Use SDL for fullscreen support");
+ scale = scaleFactor; // not supported yet! ignored.
}
void drawMouse(Scumm *s, int, int, int, byte*, bool) {