From 4104b3d540e3c4a266109ccd46014d802d035742 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Sat, 3 Jun 2023 22:22:24 -0700 Subject: [PATCH] ui: Change snapshot 'Save' button to 'Replace' for clarity --- ui/xui/main-menu.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/xui/main-menu.cc b/ui/xui/main-menu.cc index dbd524b5e0..6ee37a1a39 100644 --- a/ui/xui/main-menu.cc +++ b/ui/xui/main-menu.cc @@ -944,7 +944,7 @@ void MainMenuSnapshotsView::Draw() } ImGui::SameLine(); - if (ImGui::Button(snapshot_with_create_name_exists ? "Save" : "Create")) { + if (ImGui::Button(snapshot_with_create_name_exists ? "Replace" : "Create")) { xemu_snapshots_save(m_create_buf.empty() ? NULL : m_create_buf.c_str(), NULL); m_create_buf.clear(); }