mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-13 15:40:57 +00:00
forgot to commit
This commit is contained in:
parent
e1209a8a6b
commit
8457980cb2
@ -35,6 +35,7 @@ Engine::Engine() :
|
||||
currScene_(NULL), selectedActor_(NULL) {
|
||||
for (int i = 0; i < SDLK_EXTRA_LAST; i++)
|
||||
controlsEnabled_[i] = false;
|
||||
_speechMode = 2;
|
||||
}
|
||||
|
||||
void Engine::mainLoop() {
|
||||
|
3
engine.h
3
engine.h
@ -93,6 +93,8 @@ public:
|
||||
}
|
||||
|
||||
void setMode(int mode) { _mode = mode; }
|
||||
void setSpeechMode(int mode) { _speechMode = mode; }
|
||||
int getSpeechMode() { return _speechMode; }
|
||||
|
||||
void mainLoop();
|
||||
unsigned frameStart() const { return frameStart_; }
|
||||
@ -146,6 +148,7 @@ private:
|
||||
|
||||
Scene *currScene_;
|
||||
int _mode;
|
||||
int _speechMode;
|
||||
|
||||
unsigned frameStart_, frameTime_, movieTime_;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user