aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-21 20:20:47 -0400
committerPaul Gilbert2016-03-21 20:20:47 -0400
commit024f79d282bd30bf11e30aee46b77669c05f60ea (patch)
tree43fdd2ab1c25fa3f97257ad671b1b6f4d813d426 /graphics
parentbe0d133238b9e95e557f25d1c1cadd96e19932a9 (diff)
parent8fa5522819229628f9f43e542a90245380f5edf5 (diff)
downloadscummvm-rg350-024f79d282bd30bf11e30aee46b77669c05f60ea.tar.gz
scummvm-rg350-024f79d282bd30bf11e30aee46b77669c05f60ea.tar.bz2
scummvm-rg350-024f79d282bd30bf11e30aee46b77669c05f60ea.zip
Merge branch 'sherlock-setpixels'
Diffstat (limited to 'graphics')
-rw-r--r--graphics/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/screen.cpp b/graphics/screen.cpp
index 4169c98035..ccf651f536 100644
--- a/graphics/screen.cpp
+++ b/graphics/screen.cpp
@@ -28,7 +28,7 @@
namespace Graphics {
Screen::Screen(): ManagedSurface() {
- create(g_system->getWidth(), g_system->getHeight());
+ create(g_system->getWidth(), g_system->getHeight(), g_system->getScreenFormat());
}
Screen::Screen(int width, int height): ManagedSurface() {