aboutsummaryrefslogtreecommitdiff
path: root/engines/access/access.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/access/access.cpp')
-rw-r--r--engines/access/access.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/access/access.cpp b/engines/access/access.cpp
index 23b8fb9f45..e4b4159f9b 100644
--- a/engines/access/access.cpp
+++ b/engines/access/access.cpp
@@ -51,7 +51,6 @@ void AccessEngine::initialize() {
}
Common::Error AccessEngine::run() {
- initGraphics(320, 200, false);
initialize();
return Common::kNoError;
@@ -61,4 +60,9 @@ int AccessEngine::getRandomNumber(int maxNumber) {
return _randomSource.getRandomNumber(maxNumber);
}
+void AccessEngine::SETVGA() {
+ initGraphics(320, 200, false);
+}
+
+
} // End of namespace Access