aboutsummaryrefslogtreecommitdiff
path: root/engines/made/made.h
diff options
context:
space:
mode:
authorFilippos Karapetis2009-01-16 23:20:17 +0000
committerFilippos Karapetis2009-01-16 23:20:17 +0000
commit68a20e2aba09dd366341ab62bbdfb05cd3f04534 (patch)
treec85327c1e0b88431557ddcf22343f32955b5413d /engines/made/made.h
parentd53a340a4d79c2b00a7ac4c0c346607e5d1d0eb8 (diff)
downloadscummvm-rg350-68a20e2aba09dd366341ab62bbdfb05cd3f04534.tar.gz
scummvm-rg350-68a20e2aba09dd366341ab62bbdfb05cd3f04534.tar.bz2
scummvm-rg350-68a20e2aba09dd366341ab62bbdfb05cd3f04534.zip
- Removed _gameVersion, engine versions are set in the game detection entries now
- Renamed ProjectReader -> ResourceReader - Added some WIP code for the EGA version of the Manhole (still not working/disabled) - The resource reader now closes the files it has opened correctly when it's deleted svn-id: r35877
Diffstat (limited to 'engines/made/made.h')
-rw-r--r--engines/made/made.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/engines/made/made.h b/engines/made/made.h
index 297c253698..f6044f29c6 100644
--- a/engines/made/made.h
+++ b/engines/made/made.h
@@ -67,7 +67,7 @@ const uint32 kTimerResolution = 40;
struct MadeGameDescription;
-class ProjectReader;
+class ResourceReader;
class PmvPlayer;
class Screen;
class ScriptInterpreter;
@@ -105,7 +105,7 @@ public:
private:
public:
PmvPlayer *_pmvPlayer;
- ProjectReader *_res;
+ ResourceReader *_res;
Screen *_screen;
GameDatabase *_dat;
ScriptInterpreter *_script;
@@ -120,10 +120,6 @@ public:
uint _soundEnergyIndex;
SoundEnergyArray *_soundEnergyArray;
- // 2 = LGOP2, Manhole N&E
- // 3 = Return to Zork
- int _engineVersion;
-
int32 _timers[50];
int16 getTicks();
int16 getTimer(int16 timerNum);