fix(TabNetwork): Labels had the same idea causing conflicts when using these elements

This commit is contained in:
Yimura 2020-12-27 00:48:36 +01:00
parent db7e37f2a5
commit 88fb0b0141
No known key found for this signature in database
GPG Key ID: 54EFAD29393A6E78

View File

@ -26,7 +26,8 @@ namespace big
if (ImGui::Checkbox("Spoof Online Rank", g_settings.options["spoof_rank"].get<bool*>()))
g_settings.save();
if (ImGui::InputInt("Spoof Online Rank", (PINT)g_settings.options["rank"].get<int64_t*>(), 1, 50))
if (ImGui::InputInt(": Rank", (PINT)g_settings.options["rank"].get<int64_t*>(), 1, 50))
g_settings.save();
ImGui::EndTabItem();