From 544f564044d009e84c991f498a8ad8106d186021 Mon Sep 17 00:00:00 2001 From: Tyler Stocks Date: Mon, 10 Jun 2024 23:08:06 +0100 Subject: [PATCH] Changed var name to match --- src/game/editor/popups.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/game/editor/popups.cpp b/src/game/editor/popups.cpp index b6724d28e..404580a30 100644 --- a/src/game/editor/popups.cpp +++ b/src/game/editor/popups.cpp @@ -1632,7 +1632,7 @@ CUi::EPopupMenuFunctionResult CEditor::PopupImage(void *pContext, CUIRect View, CEditor *pEditor = static_cast(pContext); static int s_ExternalButton = 0; - static int s_ReaddButton = 0; + static int s_ReloadButton = 0; static int s_ReplaceButton = 0; static int s_RemoveButton = 0; static int s_ExportButton = 0; @@ -1686,7 +1686,7 @@ CUi::EPopupMenuFunctionResult CEditor::PopupImage(void *pContext, CUIRect View, static CUi::SSelectionPopupContext s_SelectionPopupContext; static CScrollRegion s_SelectionPopupScrollRegion; s_SelectionPopupContext.m_pScrollRegion = &s_SelectionPopupScrollRegion; - if(pEditor->DoButton_MenuItem(&s_ReaddButton, "Reload", 0, &Slot, 0, "Reloads the image from the mapres folder")) + if(pEditor->DoButton_MenuItem(&s_ReloadButton, "Reload", 0, &Slot, 0, "Reloads the image from the mapres folder")) { char aFilename[IO_MAX_PATH_LENGTH]; str_format(aFilename, sizeof(aFilename), "%s.png", pImg->m_aName); @@ -1754,7 +1754,7 @@ CUi::EPopupMenuFunctionResult CEditor::PopupSound(void *pContext, CUIRect View, { CEditor *pEditor = static_cast(pContext); - static int s_ReaddButton = 0; + static int s_ReloadButton = 0; static int s_ReplaceButton = 0; static int s_RemoveButton = 0; static int s_ExportButton = 0; @@ -1785,7 +1785,7 @@ CUi::EPopupMenuFunctionResult CEditor::PopupSound(void *pContext, CUIRect View, View.HSplitTop(5.0f, nullptr, &View); View.HSplitTop(RowHeight, &Slot, &View); - if(pEditor->DoButton_MenuItem(&s_ReaddButton, "Reload", 0, &Slot, 0, "Reloads the sound from the mapres folder")) + if(pEditor->DoButton_MenuItem(&s_ReloadButton, "Reload", 0, &Slot, 0, "Reloads the sound from the mapres folder")) { char aFilename[IO_MAX_PATH_LENGTH]; str_format(aFilename, sizeof(aFilename), "%s.opus", pSound->m_aName);