From 3ef0558aa933ce20242b3f842c235f792a6d2d32 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 22 Jul 2011 11:54:46 +0200 Subject: CGE: Rename some more constants, some cleanup --- engines/cge/snail.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/cge/snail.cpp') diff --git a/engines/cge/snail.cpp b/engines/cge/snail.cpp index e9ae494811..e694cab0b9 100644 --- a/engines/cge/snail.cpp +++ b/engines/cge/snail.cpp @@ -303,10 +303,10 @@ void CGEEngine::pocFul() { _hero->park(); SNPOST(SNWAIT, -1, -1, _hero); - SNPOST(SNSEQ, -1, POC_FUL, _hero); + SNPOST(SNSEQ, -1, kSeqPocketFull, _hero); SNPOST(SNSOUND, -1, 2, _hero); SNPOST(SNWAIT, -1, -1, _hero); - SNPOST(SNSAY, 1, POC_FUL_TEXT, _hero); + SNPOST(SNSAY, 1, kPocketFull, _hero); } void CGEEngine::hide1(Sprite *spr) { @@ -1006,7 +1006,7 @@ void Snail::runCom() { case SNSAY : if (spr && _talkEnable) { if (spr == _hero && spr->seqTest(-1)) - spr->step(HTALK); + spr->step(kSeqHTalk); _text->say(_text->getText(snc->_val), spr); _sys->_funDel = kHeroFun0; } @@ -1020,7 +1020,7 @@ void Snail::runCom() { case SNTIME : if (spr && _talkEnable) { if (spr == _hero && spr->seqTest(-1)) - spr->step(HTALK); + spr->step(kSeqHTalk); sayTime(spr); } break; -- cgit v1.2.3