const char * patch 2156837 by riccardom

This commit is contained in:
yabause 2008-10-10 21:26:02 +00:00
parent a02e215b3e
commit 88dac45826
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ void set_menuitem_label(GtkWidget * w, char * text )
} }
} }
void clear_savestate_menu(char * cb_name, u8 num) void clear_savestate_menu(const char * cb_name, u8 num)
{ {
GtkWidget * w; GtkWidget * w;
char cb[40]; char cb[40];
@ -55,7 +55,7 @@ void clear_savestate_menu(char * cb_name, u8 num)
set_menuitem_label( w, text ); set_menuitem_label( w, text );
} }
void update_savestate_menu(char * cb_name, u8 num) void update_savestate_menu(const char * cb_name, u8 num)
{ {
GtkWidget * w; GtkWidget * w;
char cb[40]; char cb[40];
@ -97,7 +97,7 @@ void update_savestate(u8 num)
/* inline & protos */ /* inline & protos */
inline void SET_SENSITIVE(gchar *w, gboolean b) { inline void SET_SENSITIVE(const gchar *w, gboolean b) {
gtk_widget_set_sensitive( gtk_widget_set_sensitive(
glade_xml_get_widget(xml, w), TRUE); glade_xml_get_widget(xml, w), TRUE);
} }

View File

@ -37,7 +37,7 @@ typedef struct
struct SFORMAT struct SFORMAT
{ {
//a string description of the element //a string description of the element
char *desc; const char *desc;
//the size of each element //the size of each element
u32 size; u32 size;