diff --git a/engines/private/decompiler.cpp b/engines/private/decompiler.cpp index 0838792e9de..e31392f6f95 100644 --- a/engines/private/decompiler.cpp +++ b/engines/private/decompiler.cpp @@ -129,7 +129,6 @@ Decompiler::Decompiler(char *buf, uint32 fileSize, bool mac) { Common::String firstBytes((const char *)array.begin(), (const char *)array.begin() + kHeaderSize); if (firstBytes != kHeader) { - debug("Not a precompiled game matrix"); _result = Common::String(buf); return; } diff --git a/engines/private/funcs.cpp b/engines/private/funcs.cpp index 544f85a88bb..33cf8904a35 100644 --- a/engines/private/funcs.cpp +++ b/engines/private/funcs.cpp @@ -54,7 +54,6 @@ static void fChgMode(ArgArray args) { if (args.size() == 3) { Symbol *location = g_private->maps.lookupLocation(args[2].u.sym->name); - debug("location: %s", location->name->c_str()); setSymbol(location, true); }