fixed invalid format string in validateResource

svn-id: r3533
This commit is contained in:
Ludvig Strigeus 2001-12-27 18:03:20 +00:00
parent 5a7b86cbf6
commit cbf624f2f4

@ -590,7 +590,7 @@ byte *Scumm::createResource(int type, int index, uint32 size) {
void Scumm::validateResource(const char *str, int type, int index) {
if (type<rtFirst || type>rtLast || (uint)index >= (uint)res.num[type]) {
error("%d Illegal Glob type %d num %d", str, type, index);
error("%s Illegal Glob type %d num %d", str, type, index);
}
}