mirror of https://github.com/snes9xgit/snes9x.git
GTK: Yes, we want button and menu images.
This commit is contained in:
parent
c39f769002
commit
cc1f6de281
|
@ -61,6 +61,11 @@ int main (int argc, char *argv[])
|
||||||
|
|
||||||
char *rom_filename = S9xParseArgs (argv, argc);
|
char *rom_filename = S9xParseArgs (argv, argc);
|
||||||
|
|
||||||
|
#if GTK_MAJOR_VERSION >= 3
|
||||||
|
auto settings = gtk_settings_get_default();
|
||||||
|
g_object_set(settings, "gtk-menu-images", true, "gtk_button_images", true, NULL);
|
||||||
|
#endif
|
||||||
|
|
||||||
S9xReportControllers ();
|
S9xReportControllers ();
|
||||||
|
|
||||||
if (!Memory.Init () || !S9xInitAPU ())
|
if (!Memory.Init () || !S9xInitAPU ())
|
||||||
|
|
Loading…
Reference in New Issue