diff options
author | Einar Johan Trøan Sømåen | 2012-05-09 13:59:51 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-02 12:42:08 +0200 |
commit | 59dffd5e86490d3a513445fa21ff142aa5ff4a02 (patch) | |
tree | 5678a68f525ec567711bf525cfbb02eaf7f85aee | |
parent | cb06258124453f8d28f9768433d36ab25c0a92c8 (diff) | |
download | scummvm-rg350-59dffd5e86490d3a513445fa21ff142aa5ff4a02.tar.gz scummvm-rg350-59dffd5e86490d3a513445fa21ff142aa5ff4a02.tar.bz2 scummvm-rg350-59dffd5e86490d3a513445fa21ff142aa5ff4a02.zip |
WINTERMUTE: Correct the default-resolution to 640x480
-rw-r--r-- | engines/wintermute/wintermute.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/wintermute.cpp b/engines/wintermute/wintermute.cpp index aa32ad8578..1faa4a44f0 100644 --- a/engines/wintermute/wintermute.cpp +++ b/engines/wintermute/wintermute.cpp @@ -71,7 +71,7 @@ namespace WinterMute { Common::Error WinterMuteEngine::run() { // Initialize graphics using following: - initGraphics(320, 200, false); + initGraphics(640, 480, false); // You could use backend transactions directly as an alternative, // but it isn't recommended, until you want to handle the error values |