Skip to content

Commit

Permalink
Set KEMPSTON joystick mapping as default
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmojo committed Aug 7, 2020
1 parent bf255bb commit ffd4651
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion options_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,11 @@ void OpSound(eSound s) { op_sound.Set(s); }

static struct eOptionJoy : public xOptions::eOptionInt
{
eOptionJoy() { Set(J_FIRST); }
#if defined RG350 || defined RETROFW
eOptionJoy() { Set(J_KEMPSTON); }
#else
eOptionJoy() { Set(J_FIRST); }
#endif
virtual const char* Name() const { return "joystick"; }
virtual const char** Values() const
{
Expand Down

0 comments on commit ffd4651

Please sign in to comment.