aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/supernova/supernova.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/supernova/supernova.cpp b/engines/supernova/supernova.cpp
index 6c29e57f39..c4911548c2 100644
--- a/engines/supernova/supernova.cpp
+++ b/engines/supernova/supernova.cpp
@@ -72,7 +72,7 @@ SupernovaEngine::SupernovaEngine(OSystem *syst)
, _console(NULL)
, _brightness(255)
, _menuBrightness(255)
- , _imageIndex(10)
+ , _imageIndex(0)
, _sectionIndex(0)
, _delay(33)
, _gameRunning(true)
@@ -218,7 +218,7 @@ void playSoundMod(int filenumber)
void SupernovaEngine::renderImage(int filenumber, int section, bool fullscreen) {
Common::File file;
- if (!file.open(Common::String::format("msn_data.0%2d", filenumber))) {
+ if (!file.open(Common::String::format("msn_data.%03d", filenumber))) {
error("File %s could not be read!", file.getName());
}