aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalanche.cpp
diff options
context:
space:
mode:
authorStrangerke2013-09-29 17:54:03 +0200
committerStrangerke2013-09-29 17:54:03 +0200
commitde12f46db5d636c005118db2743bbb7b8a8e6287 (patch)
tree480a2e6a47f50b9c8e1e436c419f8cb0327a270b /engines/avalanche/avalanche.cpp
parent063bc8d8c95e74732e1b78f2dc62f36b43e03fc1 (diff)
downloadscummvm-rg350-de12f46db5d636c005118db2743bbb7b8a8e6287.tar.gz
scummvm-rg350-de12f46db5d636c005118db2743bbb7b8a8e6287.tar.bz2
scummvm-rg350-de12f46db5d636c005118db2743bbb7b8a8e6287.zip
AVALANCHE: Rename Graphics to avoid confusion, add drawBackgroundSprite(), set _background private
Diffstat (limited to 'engines/avalanche/avalanche.cpp')
-rw-r--r--engines/avalanche/avalanche.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp
index 729bb8bdc5..617d23cd19 100644
--- a/engines/avalanche/avalanche.cpp
+++ b/engines/avalanche/avalanche.cpp
@@ -91,7 +91,7 @@ AvalancheEngine::~AvalancheEngine() {
}
Common::ErrorCode AvalancheEngine::initialize() {
- _graphics = new Graphics(this);
+ _graphics = new GraphicManager(this);
_parser = new Parser(this);
_clock = new Clock(this);
@@ -299,7 +299,7 @@ bool AvalancheEngine::saveGame(const int16 slot, const Common::String &desc) {
f->writeUint32LE(desc.size());
f->write(desc.c_str(), desc.size());
- ::Graphics::saveThumbnail(*f);
+ Graphics::saveThumbnail(*f);
TimeDate t;
_system->getTimeAndDate(t);
@@ -359,7 +359,7 @@ bool AvalancheEngine::loadGame(const int16 slot) {
}
description.toUppercase();
- ::Graphics::skipThumbnail(*f);
+ Graphics::skipThumbnail(*f);
// Read the time the game was saved.
TimeDate t;