From 7025bcd4571108099cbe5ac77933a75c96ed8868 Mon Sep 17 00:00:00 2001 From: Andrea Odetti Date: Sat, 20 Mar 2021 17:00:45 +0000 Subject: [PATCH] Use correct memory editor. Signed-off-by: Andrea Odetti --- source/frontends/sdl/imgui/sdlsettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontends/sdl/imgui/sdlsettings.cpp b/source/frontends/sdl/imgui/sdlsettings.cpp index 8daf65f8..e164a08c 100644 --- a/source/frontends/sdl/imgui/sdlsettings.cpp +++ b/source/frontends/sdl/imgui/sdlsettings.cpp @@ -320,7 +320,7 @@ namespace sa2 if (ImGui::BeginTabItem("AUX")) { void * auxBase = MemGetAuxPtr(0); - myMainMemoryEditor.DrawContents(auxBase, _6502_MEM_LEN); + myAuxMemoryEditor.DrawContents(auxBase, _6502_MEM_LEN); ImGui::EndTabItem(); } ImGui::EndTabBar();