summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-01-23 00:55:21 +1100
committer Vas Crabb <vas@vastheman.com>2021-01-23 00:55:21 +1100
commit205511eea7e39e4d5a6f642bd05a223c023059c6 (patch)
treec379ae67a0550e4ba84344fdb7a5f11e31bd34c6 /src/osd/sdl
parent463e48a7e5db6a0c26c405fef848882faff556d8 (diff)
-getaway.cpp: Fixed steering control.
* Works fine with an analog stick/wheel, difficult to steer on the slippery "dotted" surface with keyboard/D-pad. -osd: Moved GCC intrinsics out of eminline.h so MAME_NOASM will take the pure C++ implementation with GCC (makes testing the fallback easier). -Removed a bunch of [[maybe_unused]] that aren't actually needed.
Diffstat (limited to 'src/osd/sdl')
-rw-r--r--src/osd/sdl/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/sdl/window.h b/src/osd/sdl/window.h
index b2a6c6cf165..211d6348231 100644
--- a/src/osd/sdl/window.h
+++ b/src/osd/sdl/window.h
@@ -33,7 +33,7 @@ class SDL_DM_Wrapper;
typedef uintptr_t HashT;
-#define OSDWORK_CALLBACK(name) void *name(void *param, [[maybe_unused]] int threadid)
+#define OSDWORK_CALLBACK(name) void *name(void *param, int threadid)
class sdl_window_info : public osd_window_t<SDL_Window*>
{