From 4c446543b4c7716ad87b2db9988ea80c3c3a87c0 Mon Sep 17 00:00:00 2001 From: riccardom Date: Sat, 25 Apr 2009 10:26:17 +0000 Subject: [PATCH] Looks this modulo in savestate labels is a leftover. --- desmume/src/gtk/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/gtk/main.cpp b/desmume/src/gtk/main.cpp index c0231fb01..98dca49d1 100644 --- a/desmume/src/gtk/main.cpp +++ b/desmume/src/gtk/main.cpp @@ -1370,7 +1370,7 @@ static void desmume_gtk_menu_file_saveload_slot (GtkActionGroup *ag) GtkAction *act; char label[64], name[64]; - snprintf(label, 60, "_%d", i % 10); + snprintf(label, 60, "_%d", i); snprintf(name, 60, "savestate%d", i); act = gtk_action_new(name, label, NULL, NULL);