diff options
author | Nicolas Noble | 2002-05-07 08:53:27 +0000 |
---|---|---|
committer | Nicolas Noble | 2002-05-07 08:53:27 +0000 |
commit | 5a4ed65edaa236f372633ee5596c3c77c8317a9d (patch) | |
tree | abc3d6efa94987a7f9c732363b3b51e3f7700d61 | |
parent | 7100f8071318f7c9b30989f8193196d8bb36d536 (diff) | |
download | scummvm-rg350-5a4ed65edaa236f372633ee5596c3c77c8317a9d.tar.gz scummvm-rg350-5a4ed65edaa236f372633ee5596c3c77c8317a9d.tar.bz2 scummvm-rg350-5a4ed65edaa236f372633ee5596c3c77c8317a9d.zip |
One should not work when just awoken... _talkspeed != _talkSpeed.... sorry!
svn-id: r4225
-rw-r--r-- | gameDetector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gameDetector.cpp b/gameDetector.cpp index 26f9de269d..8490226048 100644 --- a/gameDetector.cpp +++ b/gameDetector.cpp @@ -117,7 +117,7 @@ void GameDetector::updateconfig() _gameTempo = strtol(val, NULL, 0); if ((val = scummcfg->get("talkspeed"))) - _talkspeed = atoi(val); + _talkSpeed = atoi(val); } void GameDetector::parseCommandLine(int argc, char **argv) |