Skip to content

Commit

Permalink
Documentation|DehReader: Mark Eternity's extensions for future reference
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Oct 2, 2014
1 parent 6f30239 commit b87fdd7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doomsday/plugins/dehread/src/dehreader.cpp
Expand Up @@ -426,26 +426,26 @@ class DehReader
skipToNextLine();
parseStrings();
}
else if(line.beginsWith("[HELPER]", Qt::CaseInsensitive)) // BEX
else if(line.beginsWith("[HELPER]", Qt::CaseInsensitive)) // Eternity
{
// Not yet supported (Helper Dogs from MBF).
//skipToNextLine();
parseHelper();
skipToNextSection();
}
else if(line.beginsWith("[SPRITES]", Qt::CaseInsensitive)) // BEX
else if(line.beginsWith("[SPRITES]", Qt::CaseInsensitive)) // Eternity
{
// Not yet supported.
//skipToNextLine();
parseSprites();
skipToNextSection();
}
else if(line.beginsWith("[SOUNDS]", Qt::CaseInsensitive)) // BEX
else if(line.beginsWith("[SOUNDS]", Qt::CaseInsensitive)) // Eternity
{
skipToNextLine();
parseSounds();
}
else if(line.beginsWith("[MUSIC]", Qt::CaseInsensitive)) // BEX
else if(line.beginsWith("[MUSIC]", Qt::CaseInsensitive)) // Eternity
{
skipToNextLine();
parseMusic();
Expand Down Expand Up @@ -1474,19 +1474,19 @@ class DehReader
}
}

void parseHelper() // BEX
void parseHelper() // Eternity
{
LOG_AS("parseHelper");
LOG_WARNING("[HELPER] patches are not supported.");
}

void parseSprites() // BEX
void parseSprites() // Eternity
{
LOG_AS("parseSprites");
LOG_WARNING("[SPRITES] patches are not supported.");
}

void parseSounds() // BEX
void parseSounds() // Eternity
{
LOG_AS("parseSounds");
// BEX doesn't follow the same rules as .deh
Expand Down Expand Up @@ -1516,7 +1516,7 @@ class DehReader
}
}

void parseMusic() // BEX
void parseMusic() // Eternity
{
LOG_AS("parseMusic");
// BEX doesn't follow the same rules as .deh
Expand Down

0 comments on commit b87fdd7

Please sign in to comment.