diff options
author | Filippos Karapetis | 2015-02-24 18:51:44 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2015-12-15 00:05:02 +0100 |
commit | 83e58fe452828f29d59aa1b324d2040b1d6c539b (patch) | |
tree | 5ffe69a039df90cf583be164e5257a4c8237c26f /engines/lab/engine.cpp | |
parent | a83c50cf66e72d105ef64b29a10e3f9603e0141b (diff) | |
download | scummvm-rg350-83e58fe452828f29d59aa1b324d2040b1d6c539b.tar.gz scummvm-rg350-83e58fe452828f29d59aa1b324d2040b1d6c539b.tar.bz2 scummvm-rg350-83e58fe452828f29d59aa1b324d2040b1d6c539b.zip |
LAB: Rename waiteffect -> waitForEffect
Diffstat (limited to 'engines/lab/engine.cpp')
-rw-r--r-- | engines/lab/engine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index 5a51c636b0..f8391d3f0d 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -47,7 +47,7 @@ bool LongWinInFront = false; TextFont *MsgFont; -extern bool DoBlack, waiteffect, EffectPlaying, stopsound, DoNotDrawMessage, IsHiRes, nopalchange, DoMusic; +extern bool DoBlack, waitForEffect, EffectPlaying, stopsound, DoNotDrawMessage, IsHiRes, nopalchange, DoMusic; /* Global parser data */ @@ -612,9 +612,9 @@ static bool doUse(uint16 CurInv) { } DoBlack = false; - waiteffect = true; + waitForEffect = true; readPict("Music:Click", true); - waiteffect = false; + waitForEffect = false; DoBlack = false; Test = getInvName(CurInv); |