diff options
author | 2015-01-14 03:35:10 +0100 | |
---|---|---|
committer | 2015-01-14 03:35:10 +0100 | |
commit | b5558df1cfabe52689dc61628e62fe3a499ea08e (patch) | |
tree | 390d8d881111251fb4d07d8dc1e522ac8f1151d7 /src/osd/sdl/input.c | |
parent | 9a168f7c0d02a46098277e98f74f9092c493eda3 (diff) |
Removed some machine() references
Diffstat (limited to 'src/osd/sdl/input.c')
-rw-r--r-- | src/osd/sdl/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/sdl/input.c b/src/osd/sdl/input.c index 13d5a8a1e64..4b2f1e57093 100644 --- a/src/osd/sdl/input.c +++ b/src/osd/sdl/input.c @@ -1416,7 +1416,7 @@ bool sdl_osd_interface::input_init() } // get Sixaxis special mode info - sixaxis_mode = downcast<sdl_options &>(machine().options()).sixaxis(); + sixaxis_mode = options().sixaxis(); // register the joysticks sdlinput_register_joysticks(machine()); @@ -2086,7 +2086,7 @@ void sdl_osd_interface::customize_input_type_list(simple_list<input_type_entry> { // configurable UI mode switch case IPT_UI_TOGGLE_UI: - uimode = downcast<sdl_options &>(machine().options()).ui_mode_key(); + uimode = options().ui_mode_key(); if(!strcmp(uimode,"auto")) { #if defined(__APPLE__) && defined(__MACH__) |