Skip to content

Commit

Permalink
Deh Reader: Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Aug 19, 2012
1 parent 557e0df commit de112e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doomsday/plugins/dehread/src/dehreader.cpp
Expand Up @@ -234,6 +234,7 @@ class DehReader
doomVersion = 19;
patchVersion = 6;
patchPt = patch; // Rewind reader.
currentLineNumber = 0;

cont = skipToNextSection();
}
Expand All @@ -245,8 +246,8 @@ class DehReader
}

// Log reader settings and patch version information.
LOG_INFO("Patch version: %i Doom version: %i") << patchVersion << doomVersion;
LOG_INFO("NoText: %b") << bool(flags & NoText);
LOG_INFO("Patch version: %i Doom version: %i\nNoText: %b")
<< patchVersion << doomVersion << bool(flags & NoText);
if(patchVersion != 6)
{
LOG_WARNING("Unknown patch version. Unexpected results may occur.") << patchVersion;
Expand Down

0 comments on commit de112e1

Please sign in to comment.