aboutsummaryrefslogtreecommitdiff
path: root/engines/toon/anim.cpp
diff options
context:
space:
mode:
authorSylvain Dupont2011-02-01 23:26:54 +0000
committerSylvain Dupont2011-02-01 23:26:54 +0000
commit7ad42416499a73198939a92009d791e29bff5ca0 (patch)
tree10703e86c102f3270b1081803e3016e6f4605d0e /engines/toon/anim.cpp
parent22f87250e990da409b049a0f57625692f16a867a (diff)
downloadscummvm-rg350-7ad42416499a73198939a92009d791e29bff5ca0.tar.gz
scummvm-rg350-7ad42416499a73198939a92009d791e29bff5ca0.tar.bz2
scummvm-rg350-7ad42416499a73198939a92009d791e29bff5ca0.zip
TOON: Remove misc/ from paths since it's in global folders
Caps'ed the filenames, even if it should not matter normally svn-id: r55714
Diffstat (limited to 'engines/toon/anim.cpp')
-rw-r--r--engines/toon/anim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/anim.cpp b/engines/toon/anim.cpp
index bb5a1e7dbc..2e63d89f37 100644
--- a/engines/toon/anim.cpp
+++ b/engines/toon/anim.cpp
@@ -227,7 +227,7 @@ void Animation::drawFrameWithMaskAndScale(Graphics::Surface &surface, int32 fram
uint8 *curRow = (uint8 *)surface.pixels;
uint8 *curRowMask = mask->getDataPtr();
- if (strstr(_name, "shadow")) {
+ if (strstr(_name, "SHADOW")) {
for (int y = yy1; y < yy2; y++) {
for (int x = xx1; x < xx2; x++) {
if (x < 0 || x >= 1280 || y < 0 || y >= 400)