Add comment to explain why we can't add a check aside the existing savestates.
This commit is contained in:
parent
e9928f3adf
commit
0cf232e286
|
@ -156,8 +156,9 @@ void update_savestate_menu(char * cb_name, u8 num)
|
||||||
sprintf( cb, "%s%d", cb_name, num);
|
sprintf( cb, "%s%d", cb_name, num);
|
||||||
w = glade_xml_get_widget(xml, cb);
|
w = glade_xml_get_widget(xml, cb);
|
||||||
set_menuitem_label( w, savestates[num-1].date );
|
set_menuitem_label( w, savestates[num-1].date );
|
||||||
/* FIXME: Setting the menu item active makes DeSmuME go crazy!? */
|
/* FIXME: Uncommenting the following makes DeSmuME go crazy.
|
||||||
/* gtk_check_menu_item_set_active((GtkCheckMenuItem*)w, TRUE); */
|
It triggers the callback (update_savestate) on activate. */
|
||||||
|
/* gtk_check_menu_item_set_active((GtkCheckMenuItem*)w, TRUE); */
|
||||||
}
|
}
|
||||||
|
|
||||||
void update_savestates_menu()
|
void update_savestates_menu()
|
||||||
|
@ -183,6 +184,7 @@ void update_savestates_menu()
|
||||||
|
|
||||||
void update_savestate(u8 num)
|
void update_savestate(u8 num)
|
||||||
{
|
{
|
||||||
|
printf("Update savestate!\n");
|
||||||
desmume_pause();
|
desmume_pause();
|
||||||
savestate_slot(num);
|
savestate_slot(num);
|
||||||
update_savestate_menu("savestate", num);
|
update_savestate_menu("savestate", num);
|
||||||
|
|
Loading…
Reference in New Issue