woww: Add underscore to buy_bank_slot_result

This commit is contained in:
Gtker 2022-10-24 20:37:30 +02:00 committed by Alexis La Goutte
parent c77b972edc
commit b2ee0f32d1
1 changed files with 2 additions and 2 deletions

View File

@ -5159,13 +5159,13 @@ static const value_string e_status_id_strings[] = {
typedef enum {
BUY_BANK_SLOT_RESULT_FAILED_TOO_MANY = 0x0,
BUY_BANK_SLOT_RESULT_INSUFFICIENT_FUNDS = 0x1,
BUY_BANK_SLOT_RESULT_NOTBANKER = 0x2,
BUY_BANK_SLOT_RESULT_NOT_BANKER = 0x2,
BUY_BANK_SLOT_RESULT_OK = 0x3,
} e_buy_bank_slot_result;
static const value_string e_buy_bank_slot_result_strings[] = {
{ BUY_BANK_SLOT_RESULT_FAILED_TOO_MANY, "Failed Too Many" },
{ BUY_BANK_SLOT_RESULT_INSUFFICIENT_FUNDS, "Insufficient Funds" },
{ BUY_BANK_SLOT_RESULT_NOTBANKER, "Notbanker" },
{ BUY_BANK_SLOT_RESULT_NOT_BANKER, "Not Banker" },
{ BUY_BANK_SLOT_RESULT_OK, "Ok" },
{ 0, NULL }
};