1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

- ignore wog maps if wog is not present

This commit is contained in:
Ivan Savenko
2013-05-04 19:20:32 +00:00
parent 8be801a6dc
commit b3bbe27089
4 changed files with 14 additions and 6 deletions

View File

@@ -278,7 +278,12 @@ namespace EMapFormat
{
enum EMapFormat
{
INVALID, WOG=0x33, AB=0x15, ROE=0x0e, SOD=0x1c
INVALID = 0,
// HEX DEC
ROE = 0x0e, // 14
AB = 0x15, // 21
SOD = 0x1c, // 28
WOG = 0x33 // 51
};
}