From 3dbcd76aa9210ccf5da87a1df5f8f4f4ecc83f75 Mon Sep 17 00:00:00 2001 From: plombo Date: Tue, 29 Mar 2011 23:52:06 +0000 Subject: [PATCH] gtk: don't show state slot changes on the game screen if they are done using the menu (as opposed to using a hotkey) --- src/drivers/sdl/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/sdl/gui.cpp b/src/drivers/sdl/gui.cpp index d04b8f44..e8b37e64 100644 --- a/src/drivers/sdl/gui.cpp +++ b/src/drivers/sdl/gui.cpp @@ -1688,7 +1688,7 @@ void quickSave() void changeState(GtkAction *action, GtkRadioAction *current, gpointer data) { - FCEUI_SelectState(gtk_radio_action_get_current_value(current), 1); + FCEUI_SelectState(gtk_radio_action_get_current_value(current), 0); }