Changed window size variables in gui to be static as their is no reason to export them to the linker.

This commit is contained in:
Matthew Budd 2020-05-15 17:08:13 -04:00
parent 5173b85ac1
commit 172dffec55
1 changed files with 2 additions and 2 deletions

View File

@ -64,10 +64,10 @@ GtkRadioAction *stateSlot = NULL;
bool gtkIsStarted = false;
bool menuTogglingEnabled = false;
unsigned int gtk_win_width = NES_WIDTH;
unsigned int gtk_win_height = NES_HEIGHT;
unsigned int gtk_draw_area_width = NES_WIDTH;
unsigned int gtk_draw_area_height = NES_HEIGHT;
static unsigned int gtk_win_width = NES_WIDTH;
static unsigned int gtk_win_height = NES_HEIGHT;
static GtkTreeStore *hotkey_store = NULL;
// check to see if a particular GTK version is available