ui: Change snapshot 'Save' button to 'Replace' for clarity

This commit is contained in:
Matt Borgerson 2023-06-03 22:22:24 -07:00 committed by mborgerson
parent d147280cd1
commit 4104b3d540
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}