mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
fixed invalid format string in validateResource
svn-id: r3533
This commit is contained in:
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user