From 5a6f5cc4a5829807de1023684c9bcef38ad57c35 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 27 Jul 2024 23:25:04 +0200 Subject: [PATCH] fixed a bug loading scores from other modes to standard mode --- yendor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/yendor.cpp b/yendor.cpp index 950d1364..3974a8bc 100644 --- a/yendor.cpp +++ b/yendor.cpp @@ -1171,6 +1171,7 @@ constexpr int FIRST_MODECODE = 100000; EX modecode_t get_identify(modecode_t xc) { if(xc < FIRST_MODECODE && !meaning.count(xc)) { meaning[xc] = "LEGACY"; + identify_modes[xc] = xc; return xc; } return identify_modes[xc];