Ensure file globals are in file scope

This commit is contained in:
Aaron Culliney 2015-06-14 13:58:57 -07:00
parent 22037355c8
commit 5e1d8552ef

View File

@ -69,14 +69,14 @@ static struct {
// touch menu variables
struct {
static struct {
GLModel *model;
bool topLeftShowing;
bool topRightShowing;
char kbdOrJoy;
} menu = { 0 };
struct timespec timingBegin = { 0 };
static struct timespec timingBegin = { 0 };
// ----------------------------------------------------------------------------