diff options
Diffstat (limited to 'engines/agi/loader_v2.cpp')
-rw-r--r-- | engines/agi/loader_v2.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/agi/loader_v2.cpp b/engines/agi/loader_v2.cpp index de6f8d0653..8780e1dab8 100644 --- a/engines/agi/loader_v2.cpp +++ b/engines/agi/loader_v2.cpp @@ -43,7 +43,7 @@ int AgiLoader_v2::loadDir(AgiDir *agid, const char *fname) { uint32 flen; uint i; - report("Loading directory: %s\n", fname); + debug(0, "Loading directory: %s", fname); if (!fp.open(fname)) { return errBadFileOpen; @@ -157,8 +157,7 @@ uint8 *AgiLoader_v2::loadVolRes(struct AgiDir *agid) { exit(1); } } else { - report("Error: bad signature %04x\n", sig); - // fprintf (stderr, "ACK! BAD RESOURCE!!!\n"); + warning("AgiLoader_v2::loadVolRes: bad signature %04x", sig); return 0; } fp.close(); |