diff options
author | Ludvig Strigeus | 2001-12-27 18:03:20 +0000 |
---|---|---|
committer | Ludvig Strigeus | 2001-12-27 18:03:20 +0000 |
commit | cbf624f2f4e55af8745e346bbd278c7d4d990c67 (patch) | |
tree | f284d4450b34418a2c28881205dd2826487332de | |
parent | 5a7b86cbf6d31b94e95843f7324052dea561e10d (diff) | |
download | scummvm-rg350-cbf624f2f4e55af8745e346bbd278c7d4d990c67.tar.gz scummvm-rg350-cbf624f2f4e55af8745e346bbd278c7d4d990c67.tar.bz2 scummvm-rg350-cbf624f2f4e55af8745e346bbd278c7d4d990c67.zip |
fixed invalid format string in validateResource
svn-id: r3533
-rw-r--r-- | resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resource.cpp b/resource.cpp index da59b330d6..d053f34464 100644 --- a/resource.cpp +++ b/resource.cpp @@ -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); } } |