Skip to content

Commit

Permalink
WAGE: Do not dump the interpreter code
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 22, 2017
1 parent e13d567 commit 5e9b72f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/wage/world.cpp
Expand Up @@ -114,9 +114,9 @@ bool World::loadWorld(Common::MacResManager *resMan) {
Common::MacResIDArray::const_iterator iter;

// Dumping interpreter code
#if 1
#if 0
res = resMan->getResource(MKTAG('C','O','D','E'), 1);
warning("code size: %d", res->size());
warning("Dumping interpreter code size: %d", res->size());
byte *buf = (byte *)malloc(res->size());
res->read(buf, res->size());
Common::DumpFile out;
Expand Down

0 comments on commit 5e9b72f

Please sign in to comment.