diff --git a/src/strings.cpp b/src/strings.cpp --- a/src/strings.cpp +++ b/src/strings.cpp @@ -611,12 +611,6 @@ static char* FormatString(char* buff, co } } break; - case SCC_CURRENCY_COMPACT_64: { /* {CURRCOMPACT64} */ - /* 64 bit compact currency-unit */ - buff = FormatGenericCurrency(buff, _currency, GetInt64(&argv), true, last); - break; - } - case SCC_STRING1: { /* {STRING1} */ /* String that consumes ONE argument */ uint str = modifier + GetInt32(&argv); @@ -867,11 +861,6 @@ static char* FormatString(char* buff, co break; } - case SCC_CURRENCY_64: { // {CURRENCY64} - buff = FormatGenericCurrency(buff, _currency, GetInt64(&argv), false, last); - break; - } - case SCC_SETCASE: { // {SETCASE} /* This is a pseudo command, it's outputted when someone does {STRING.ack} * The modifier is added to all subsequent GetStringWithArgs that accept the modifier. */