From 5188dd3b7c559d87c19852871a97a341902303b7 Mon Sep 17 00:00:00 2001 From: BearOso Date: Thu, 20 Apr 2023 10:07:33 -0500 Subject: [PATCH] controls: Use QuickSave000 as save origin instead of QuickLoad000. --- controls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controls.cpp b/controls.cpp index d31040fa..8f53a89c 100644 --- a/controls.cpp +++ b/controls.cpp @@ -2322,7 +2322,7 @@ void S9xApplyCommand (s9xcommand_t cmd, int16 data1, int16 data2) case QuickSave009: case QuickSave010: { - std::string ext = std::to_string(i - QuickLoad000); + std::string ext = std::to_string(i - QuickSave000); while (ext.length() < 3) ext = '0' + ext;