]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
41010b1
authorToni Wilen <twilen@winuae.net>
Sun, 1 Jan 2023 16:24:23 +0000 (18:24 +0200)
committerToni Wilen <twilen@winuae.net>
Sun, 1 Jan 2023 16:24:23 +0000 (18:24 +0200)
include/options.h
od-win32/resources/winuae.rc
od-win32/win32.cpp
od-win32/win32.h
uaelib.cpp

index 7df160005c0b939cbc23157193d9c6797634e1c7..151ba12099733e9d37ea943ea79cb15969c15f2e 100644 (file)
@@ -16,7 +16,7 @@
 
 #define UAEMAJOR 4
 #define UAEMINOR 10
-#define UAESUBREV 0
+#define UAESUBREV 1
 
 #define MAX_AMIGADISPLAYS 4
 
index c9f5903ba587d6526e903e835700bc6cacb55257..4eabe04264c2490c6d918b4bb28c48bace3fac2c 100644 (file)
@@ -553,7 +553,7 @@ BEGIN
     COMBOBOX        IDC_PORT1_JOYSMODE,136,86,106,130,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
     PUSHBUTTON      "Remap / Test [] Remap or test Port 2 configuration.",IDC_PORT1_REMAP,310,86,78,14
     PUSHBUTTON      "Swap ports [] Swap ports 1 and 2.",IDC_SWAP,45,112,78,14
-    CONTROL         "Mouse/Joystick autoswitching [] Press button to automatically insert inactive input device in to joystick/mouse port",IDC_PORT_AUTOSWITCH,
+    CONTROL         "Mouse/Joystick autoswitching [] Press button to automatically insert inactive input device in to joystick/mouse port. Joy button 1 = joy port, button 2 = mouse port. Mouse button 1 = mouse port, mouse button 2 = joy port. Long press swaps port selection.",IDC_PORT_AUTOSWITCH,
                     "Button",BS_AUTOCHECKBOX | WS_TABSTOP,136,114,172,11
     LTEXT           "Emulated parallel port joystick adapter",IDC_STATIC,10,136,179,15,SS_CENTERIMAGE
     COMBOBOX        IDC_PORT2_JOYS,45,154,342,130,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
@@ -1435,7 +1435,7 @@ BEGIN
             VALUE "FileDescription", "WinUAE"
             VALUE "FileVersion", "4.10.0.0"
             VALUE "InternalName", "WinUAE"
-            VALUE "LegalCopyright", "© 1996-2022 under the GNU Public License (GPL)"
+            VALUE "LegalCopyright", "© 1996-2023 under the GNU Public License (GPL)"
             VALUE "OriginalFilename", "WinUAE.exe"
             VALUE "ProductName", "WinUAE"
             VALUE "ProductVersion", "4.10.0.0"
index 503708403e56e53ac8a9bab8fe4c3e365ac4595f..09b5846fe00c0d2fd1279ad59ff46b4bf4d828da 100644 (file)
@@ -3599,7 +3599,7 @@ void logging_init (void)
                SystemInfo.wProcessorArchitecture, SystemInfo.wProcessorLevel, SystemInfo.wProcessorRevision,
                SystemInfo.dwNumberOfProcessors, filedate, os_touch);
        write_log (_T("\n(c) 1995-2001 Bernd Schmidt   - Core UAE concept and implementation.")
-               _T("\n(c) 1998-2022 Toni Wilen      - Win32 port, core code updates.")
+               _T("\n(c) 1998-2023 Toni Wilen      - Win32 port, core code updates.")
                _T("\n(c) 1996-2001 Brian King      - Win32 port, Picasso96 RTG, and GUI.")
                _T("\n(c) 1996-1999 Mathias Ortmann - Win32 port and bsdsocket support.")
                _T("\n(c) 2000-2001 Bernd Meyer     - JIT engine.")
@@ -4467,7 +4467,7 @@ static const TCHAR *obsolete[] = {
        _T("file_path"), _T("iconified_nospeed"), _T("activepriority"), _T("magic_mouse"),
        _T("filesystem_codepage"), _T("aspi"), _T("no_overlay"), _T("soundcard_exclusive"),
        _T("specialkey"), _T("sound_speed_tweak"), _T("sound_lag"),
-       0
+       NULL
 };
 
 static int target_parse_option_hardware(struct uae_prefs *p, const TCHAR *option, const TCHAR *value)
index 4e317629cdb13584cba9b5443dd8033049398459..9284d2f558ff496bf387ba7f86857118324a33ef 100644 (file)
 #define GETBDM(x) (((x) - ((x / 10000) * 10000)) / 100)
 #define GETBDD(x) ((x) % 100)
 
-#define WINUAEPUBLICBETA 0
+#define WINUAEPUBLICBETA 1
 #define LANG_DLL 1
 #define LANG_DLL_FULL_VERSION_MATCH 1
 
 #if WINUAEPUBLICBETA
-#define WINUAEBETA _T("Beta 0")
+#define WINUAEBETA _T("Beta 1")
 #else
 #define WINUAEBETA _T("")
 #endif
 
-#define WINUAEDATE MAKEBD(2022, 12, 18)
+#define WINUAEDATE MAKEBD(2023, 1, 1)
 
 //#define WINUAEEXTRA _T("AmiKit Preview")
 //#define WINUAEEXTRA _T("Amiga Forever Edition")
index 945a7f706b822b7253f89c1d136724bb85675778..3e790b31cce8fb65b8ceb70900965fb347089d8d 100644 (file)
@@ -56,7 +56,7 @@ static uae_u32 emulib_Reset (void)
 */
 static uae_u32 emulib_EnableSound (uae_u32 val)
 {
-       if (!sound_available || currprefs.produce_sound == 2)
+       if (!sound_available || currprefs.produce_sound >= 2)
                return 0;
 
        currprefs.produce_sound = val;