From 5e1d8552efa3b615de355dbc536a78c4ea733c2d Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Sun, 14 Jun 2015 13:58:57 -0700 Subject: [PATCH] Ensure file globals are in file scope --- src/video/gltouchmenu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/gltouchmenu.c b/src/video/gltouchmenu.c index d2db3771..b8703e2d 100644 --- a/src/video/gltouchmenu.c +++ b/src/video/gltouchmenu.c @@ -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 }; // ----------------------------------------------------------------------------