aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/anim.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-04-05 13:06:03 +0000
committerTorbjörn Andersson2006-04-05 13:06:03 +0000
commit48c46eed6b573e7f131795dccc990eafb42d86a2 (patch)
tree3c142ad9f5254d9c8809cba2193f4d4e1b1468d7 /engines/cine/anim.cpp
parent58c7f8d6b1f6092e92bd82cf11af28b59d9ee5c2 (diff)
downloadscummvm-rg350-48c46eed6b573e7f131795dccc990eafb42d86a2.tar.gz
scummvm-rg350-48c46eed6b573e7f131795dccc990eafb42d86a2.tar.bz2
scummvm-rg350-48c46eed6b573e7f131795dccc990eafb42d86a2.zip
I don't think assert(0) is a particularly helpful error message...
svn-id: r21630
Diffstat (limited to 'engines/cine/anim.cpp')
-rw-r--r--engines/cine/anim.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cine/anim.cpp b/engines/cine/anim.cpp
index 149794d6d2..3f90493a2f 100644
--- a/engines/cine/anim.cpp
+++ b/engines/cine/anim.cpp
@@ -676,7 +676,7 @@ void loadSet(const char *resourceName) {
} else if (header2.type == 5) {
convert8BBP(animDataTable[entry].ptr1, dataPtr, header2.width, header2.height);
} else if (header2.type == 4) {
- assert(0);
+ error("loadSet: header2.type == 4");
} else {
convert8BBP2(animDataTable[entry].ptr1, dataPtr, header2.width, header2.height);
}
@@ -759,7 +759,7 @@ void loadSetAbs(const char *resourceName, uint16 idx) {
} else if (header2.type == 5) {
convert8BBP(animDataTable[entry].ptr1, dataPtr, header2.width, header2.height);
} else if (header2.type == 4) {
- assert(0);
+ error("loadSetAbs: header2.type == 4");
} else {
convert8BBP2(animDataTable[entry].ptr1, dataPtr, header2.width, header2.height);
}
@@ -821,7 +821,7 @@ void loadResource(const char *resourceName) {
return;
}
- assert(0);
+ error("loadResource: Cannot determine type for '%s'", resourceName);
}
void loadAbs(const char *resourceName, uint16 idx) {
@@ -844,7 +844,7 @@ void loadAbs(const char *resourceName, uint16 idx) {
return;
}
- assert(0);
+ error("loadAbs: Cannot determine type for '%s'", resourceName);
}
void loadResourcesFromSave() {