Fixed LOCAL_CPED translation keyword not being in all uppercase. (#2274)

This commit is contained in:
gir489 2023-10-13 11:01:25 -04:00 committed by GitHub
parent c38e42a488
commit d6c32533be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,7 @@ namespace big
if (ImGui::TreeNode("ADDRESSES"_T.data())) if (ImGui::TreeNode("ADDRESSES"_T.data()))
{ {
uint64_t local_cped = (uint64_t)g_local_player; uint64_t local_cped = (uint64_t)g_local_player;
ImGui::InputScalar("Local_CPED"_T.data(), ImGuiDataType_U64, &local_cped, NULL, NULL, "%p", ImGuiInputTextFlags_CharsHexadecimal); ImGui::InputScalar("LOCAL_CPED"_T.data(), ImGuiDataType_U64, &local_cped, NULL, NULL, "%p", ImGuiInputTextFlags_CharsHexadecimal);
if (g_local_player) if (g_local_player)
{ {