diff options
author | Strangerke | 2015-11-24 23:28:02 +0100 |
---|---|---|
committer | Strangerke | 2015-11-24 23:28:02 +0100 |
commit | f5c0e1679245d59b62d4819004f81039838ba78b (patch) | |
tree | cface829c4b175149bc8f01f2b108964452df8d0 /engines/mads/nebular | |
parent | 9789acce3eede499caeb71d090df43c99870f276 (diff) | |
download | scummvm-rg350-f5c0e1679245d59b62d4819004f81039838ba78b.tar.gz scummvm-rg350-f5c0e1679245d59b62d4819004f81039838ba78b.tar.bz2 scummvm-rg350-f5c0e1679245d59b62d4819004f81039838ba78b.zip |
MADS: Phantom - change the type of timeout to uint32 in handlePrisonerSpeech()
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/nebular_scenes3.cpp | 2 | ||||
-rw-r--r-- | engines/mads/nebular/nebular_scenes3.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/nebular/nebular_scenes3.cpp b/engines/mads/nebular/nebular_scenes3.cpp index 0bf90c2215..0fb13a706c 100644 --- a/engines/mads/nebular/nebular_scenes3.cpp +++ b/engines/mads/nebular/nebular_scenes3.cpp @@ -551,7 +551,7 @@ void Scene307::handlePrisonerEncounter() { } } -void Scene307::handlePrisonerSpeech(int firstQuoteId, int number, long timeout) { +void Scene307::handlePrisonerSpeech(int firstQuoteId, int number, uint32 timeout) { int height = number * 14; int posY; diff --git a/engines/mads/nebular/nebular_scenes3.h b/engines/mads/nebular/nebular_scenes3.h index cf925b3867..af75b14193 100644 --- a/engines/mads/nebular/nebular_scenes3.h +++ b/engines/mads/nebular/nebular_scenes3.h @@ -158,7 +158,7 @@ private: void handlePrisonerDialog(); void handlePrisonerEncounter(); void setDialogNode(int node); - void handlePrisonerSpeech(int firstQuoteId, int number, long timeout); + void handlePrisonerSpeech(int firstQuoteId, int number, uint32 timeout); public: Scene307(MADSEngine *vm); |