diff options
| author | Strangerke | 2015-12-06 18:16:26 +0100 |
|---|---|---|
| committer | Willem Jan Palenstijn | 2015-12-23 21:33:52 +0100 |
| commit | 785772e86f2f1a15a0f5154e25203b5b94e5087a (patch) | |
| tree | 446dc0de5bc82c722a6851a63e1b5c5fe437efed /engines/lab/lab.cpp | |
| parent | 438e7a24f5f362c383269cca41ced901a98f284e (diff) | |
| download | scummvm-rg350-785772e86f2f1a15a0f5154e25203b5b94e5087a.tar.gz scummvm-rg350-785772e86f2f1a15a0f5154e25203b5b94e5087a.tar.bz2 scummvm-rg350-785772e86f2f1a15a0f5154e25203b5b94e5087a.zip | |
LAB: Move fade functions to DisplayMan, some renaming
Diffstat (limited to 'engines/lab/lab.cpp')
| -rw-r--r-- | engines/lab/lab.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/lab/lab.cpp b/engines/lab/lab.cpp index f9de51b41f..5f2a4d5f10 100644 --- a/engines/lab/lab.cpp +++ b/engines/lab/lab.cpp @@ -95,9 +95,12 @@ LabEngine::LabEngine(OSystem *syst, const ADGameDescription *gameDesc) for (int i = 0; i < 10; i++) { _invImages[i] = nullptr; - Images[i] = nullptr; + _numberImages[i] = nullptr; } + for (int i = 0; i < 16; i++) + _tiles[i] = nullptr; + _moveGadgetList = nullptr; _invGadgetList = nullptr; _curFileName = nullptr; @@ -128,7 +131,7 @@ LabEngine::~LabEngine() { delete _graphics; for (int i = 0; i < 16; i++) - delete Tiles[i]; + delete _tiles[i]; } Common::Error LabEngine::run() { |
