summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-06-25 20:58:15 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-06-25 20:58:15 +0000
commite9baf604f9763bf2a3a59581d2af582c0ce9b826 (patch)
tree15b901224d0c1e1d7160dd22a4b5b5f76e018074 /uisimulator
parent74aabc8381e9faa221b87b7d2280238d30f2e9c5 (diff)
downloadrockbox-e9baf604f9763bf2a3a59581d2af582c0ce9b826.tar.gz
rockbox-e9baf604f9763bf2a3a59581d2af582c0ce9b826.zip
Fix sim errors. Every extra byte feels guilt-free. ;)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13717 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/sdl/thread-sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/sdl/thread-sdl.c b/uisimulator/sdl/thread-sdl.c
index 830e89e45a..90a4ecf4a7 100644
--- a/uisimulator/sdl/thread-sdl.c
+++ b/uisimulator/sdl/thread-sdl.c
@@ -28,7 +28,7 @@
28 28
29SDL_Thread *threads[256]; 29SDL_Thread *threads[256];
30int threadCount = 0; 30int threadCount = 0;
31long current_tick = 0; 31volatile long current_tick = 0;
32SDL_mutex *m; 32SDL_mutex *m;
33 33
34void yield(void) 34void yield(void)