Remove uppercase conversion

This commit is contained in:
Lwmte 2022-11-16 10:26:31 +02:00
parent 8b9f6b25ab
commit d74bb5ae4d
2 changed files with 4 additions and 4 deletions

View file

@ -66,7 +66,7 @@ local strings =
hk_ammo = { "HK Ammo" },
hk_burst_mode = { "Burst Mode" },
hk_rapid_mode = { "Rapid Mode" },
hk_lasersight = { "HK With Lasersight" },
hk_lasersight = { "HK + Lasersight" },
hk_sniper_mode = { "Sniper Mode" },
lara_home = { "Lara's Home" },
large_medipack = { "Large Medipack" },
@ -86,7 +86,7 @@ local strings =
reverb = { "Reverb" },
revolver = { "Revolver" },
revolver_ammo = { "Revolver Ammo" },
revolver_lasersight = { "Revolver With Lasersight" },
revolver_lasersight = { "Revolver + Lasersight" },
rocket_launcher_ammo = { "Rocket Launcher Ammo" },
rocket_launcher = { "Rocket Launcher" },
rumble = { "Rumble" },

View file

@ -2007,7 +2007,7 @@ namespace TEN::Gui
if (Rings[(int)RingTypes::Ammo]->RingActive)
{
auto optionString = ToUpper(std::string(OptionStrings[5]));
auto optionString = std::string(OptionStrings[5]);
g_Renderer.AddString(PHD_CENTER_X, PHD_CENTER_Y, optionString.c_str(), PRINTSTRING_COLOR_WHITE, PRINTSTRING_BLINK | PRINTSTRING_CENTER | PRINTSTRING_OUTLINE);
if (Rings[(int)RingTypes::Inventory]->ObjectListMovement)
@ -2203,7 +2203,7 @@ namespace TEN::Gui
{
for (int i = 0; i < n; i++)
{
auto optionString = ToUpper(std::string(CurrentOptions[i].Text));
auto optionString = std::string(CurrentOptions[i].Text);
if (i == CurrentSelectedOption)
{