aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-08 15:21:11 +0200
committerEugene Sandulenko2019-09-03 17:17:15 +0200
commit56f0e3f930b8b88feb13d202ec7ee910fc247563 (patch)
tree3456ed1a6f75a4ae0c2a8fdb562261423834e8ed
parenta8a43329bba6aab75423758426cfb8f8e1608df5 (diff)
downloadscummvm-rg350-56f0e3f930b8b88feb13d202ec7ee910fc247563.tar.gz
scummvm-rg350-56f0e3f930b8b88feb13d202ec7ee910fc247563.tar.bz2
scummvm-rg350-56f0e3f930b8b88feb13d202ec7ee910fc247563.zip
HDB: Removed useless warning
-rw-r--r--engines/hdb/ai-funcs.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/hdb/ai-funcs.cpp b/engines/hdb/ai-funcs.cpp
index 87bcb90651..28681df401 100644
--- a/engines/hdb/ai-funcs.cpp
+++ b/engines/hdb/ai-funcs.cpp
@@ -344,11 +344,11 @@ bool AI::cacheEntGfx(AIEntity *e, bool init) {
e->standrightGfx[e->standrightFrames] = gfx;
e->standrightFrames++;
break;
- // DOLLY states
- // angry[4] = standright[4]
- // kissright[4]/kissleft[4] = standleft[8]
- // panic[4]/laugh[4] = standdown[8]
- // dollyuseright[5] = special1[5]
+ // DOLLY states
+ // angry[4] = standright[4]
+ // kissright[4]/kissleft[4] = standleft[8]
+ // panic[4]/laugh[4] = standdown[8]
+ // dollyuseright[5] = special1[5]
case STATE_ANGRY:
e->standrightGfx[e->standrightFrames] = gfx;
e->standrightFrames++;
@@ -374,13 +374,13 @@ bool AI::cacheEntGfx(AIEntity *e, bool init) {
e->special1Frames++;
break;
- // SARGE yelling
+ // SARGE yelling
case STATE_YELL:
e->special1Gfx[e->special1Frames] = gfx;
e->special1Frames++;
break;
default:
- warning("AI-FUNCS: cacheEntGfx: Unintended State");
+ // no op
break;
}
} else {