diff --git a/README.md b/README.md index 15437bb..354bf1b 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,6 @@ This is an implementation of Bejeweled written for the Apple //. It is my HackF ![A2Bejwld Screenshot](/a2bejwld.png "A2Bejwld Screenshot") -[Download a disk image](https://github.com/jeremysrand/a2bejwld/releases/download/2.1/a2bejwld.dsk) +[Download a disk image](https://github.com/jeremysrand/a2bejwld/releases/download/2.2/a2bejwld.dsk) [Watch the YouTube video](https://youtu.be/yseAGBzREik) diff --git a/a2bejwld.xcodeproj/project.xcworkspace/xcuserdata/jrand.xcuserdatad/UserInterfaceState.xcuserstate b/a2bejwld.xcodeproj/project.xcworkspace/xcuserdata/jrand.xcuserdatad/UserInterfaceState.xcuserstate index c20aed2..ef4164f 100644 Binary files a/a2bejwld.xcodeproj/project.xcworkspace/xcuserdata/jrand.xcuserdatad/UserInterfaceState.xcuserstate and b/a2bejwld.xcodeproj/project.xcworkspace/xcuserdata/jrand.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/a2bejwld/ui.c b/a2bejwld/ui.c index 458c53d..3adfacd 100644 --- a/a2bejwld/ui.c +++ b/a2bejwld/ui.c @@ -26,7 +26,7 @@ // Defines #define SAVE_OPTIONS_FILE "A2BEJWLD.OPTS" -#define BASE_VERSION "v2.2a3" +#define BASE_VERSION "v2.2" #ifdef TOTAL_REPLAY_BUILD #define VERSION BASE_VERSION ".tr" @@ -724,11 +724,6 @@ void initUI(void) (gGameOptions.enableMouse)) { gGameOptions.enableMouse = false; gGameOptions.optionsSaved = false; - - // If there were no options loaded, then let's turn on the joystick instead. - if (!optionsLoaded) { - gGameOptions.enableJoystick = true; - } } initJoystick(&gJoyCallbacks);