Skip to content
Snippets Groups Projects
Commit 8473c989 authored by rswindell's avatar rswindell
Browse files

Fix GCC warning:

sdl_con.c: In function ‘sdl_mouse_thread’:
sdl_con.c:1424:1: warning: no return statement in function returning non-void
parent 1815ec2b
No related branches found
No related tags found
No related merge requests found
......@@ -1421,6 +1421,7 @@ static int sdl_mouse_thread(void *data)
if(mouse_wait())
sdl_add_key(CIO_KEY_MOUSE);
}
return 0;
}
static int win_to_text_xpos(int winpos)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment