woww: Add NONE to area enum

This commit is contained in:
Gtker 2022-12-15 10:41:52 +01:00 committed by Alexis La Goutte
parent a27110e0fe
commit b08b20f5d2
1 changed files with 2 additions and 0 deletions

View File

@ -1508,6 +1508,7 @@ static const value_string e_gender_strings[] = {
};
typedef enum {
AREA_NONE = 0x000,
AREA_DUN_MOROGH = 0x001,
AREA_LONGSHORE = 0x002,
AREA_BADLANDS = 0x003,
@ -2591,6 +2592,7 @@ typedef enum {
AREA_RAVENHOLDT_MANOR = 0xD9E,
} e_area;
static const value_string e_area_strings[] = {
{ AREA_NONE, "None" },
{ AREA_DUN_MOROGH, "Dun Morogh" },
{ AREA_LONGSHORE, "Longshore" },
{ AREA_BADLANDS, "Badlands" },