]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
5200b5
authorToni Wilen <twilen@winuae.net>
Tue, 23 Jan 2024 18:57:14 +0000 (20:57 +0200)
committerToni Wilen <twilen@winuae.net>
Tue, 23 Jan 2024 18:57:14 +0000 (20:57 +0200)
memory.cpp
od-win32/resources/winuae.rc
od-win32/win32.h
od-win32/winuaechangelog.txt

index 3dbf7d3155ef1cb1a00df2371109c5f60d1210e0..e9403da1072be6421aaa23aaded0a768486160d4 100644 (file)
@@ -2672,7 +2672,7 @@ static void fill_ce_banks (void)
        }
 
        if (currprefs.address_space_24) {
-               for (i = 1; i < 256; i++)
+               for (i = 1; i < MEMORY_BANKS_24; i++)
                        memcpy(&ce_banktype[i * 256], &ce_banktype[0], 256);
        }
 
@@ -3452,7 +3452,7 @@ static void map_banks2 (addrbank *bank, int start, int size, int realsize, int q
        }
 
 #ifndef ADDRESS_SPACE_24BIT
-       if (start >= 0x100) {
+       if (start >= MEMORY_BANKS_24) {
                int real_left = 0;
                for (bnr = start; bnr < start + size; bnr++) {
                        if (!real_left) {
@@ -3580,7 +3580,7 @@ void map_banks (addrbank *bank, int start, int size, int realsize)
        }
 #endif
 
-       if (start >= 0x100) {
+       if (start >= MEMORY_BANKS_24) {
                int real_left = 0;
                for (int bnr = start; bnr < start + size; bnr++) {
                        highram_temp_bank[bnr - 0x100] = bank;
index b55562fdb7968c870723f5a81b9691776d0845fe..4f6296fafe5fcebb087abc638484a89acf82e829 100644 (file)
@@ -2044,8 +2044,8 @@ BEGIN
     IDS_NUMSG_KS68020       "The selected system ROM requires a 68020 with 32-bit addressing or 68030 or higher CPU."
     IDS_NUMSG_ROMNEED       "One of the following system ROMs is required:\n\n%s\n\nCheck the System ROM path in the Paths panel and click Rescan ROMs."
     IDS_NUMSG_STATEHD       "WARNING: Current configuration is not fully compatible with state saves.\nThis message will not appear again."
-    IDS_NUMSG_NOCAPS        "Selected disk image needs the SPS plugin\nwhich is available from\nhttp//www.softpres.org/"
-    IDS_NUMSG_OLDCAPS       "You need an updated SPS plugin\nwhich is available from\nhttp//www.softpres.org/"
+    IDS_NUMSG_NOCAPS        "Selected disk image needs the SPS plugin\nwhich is available from\nhttp://www.softpres.org/"
+    IDS_NUMSG_OLDCAPS       "You need an updated SPS plugin\nwhich is available from\nhttp://www.softpres.org/"
     IDS_IMGCHK_BOOTBLOCKCRCERROR 
                             "The selected floppy disk image is not bootable (boot block checksum error)"
     IDS_IMGCHK_BOOTBLOCKNO  "The selected floppy disk image is not bootable (no boot block)"
index d26eb2cebf8d6aad22b97bcc0ad203a92031111c..c3964f54a617d6fc4d120ff137094d89eb457ad3 100644 (file)
 #define LANG_DLL_FULL_VERSION_MATCH 1
 
 #if WINUAEPUBLICBETA
-#define WINUAEBETA _T("4")
+#define WINUAEBETA _T("5")
 #else
 #define WINUAEBETA _T("")
 #endif
 
-#define WINUAEDATE MAKEBD(2024, 1, 14)
+#define WINUAEDATE MAKEBD(2024, 1, 23)
 
 //#define WINUAEEXTRA _T("AmiKit Preview")
 //#define WINUAEEXTRA _T("Amiga Forever Edition")
index 9b996c7c6d345b2fa799b635517fb75f81bd225f..ab386bf2b22deaafb6e76d1c7feb875e49829b33 100644 (file)
@@ -1,4 +1,17 @@
 
+
+Beta 5:
+
+- Registry/ini ROM paths and history list paths (last used ADFs, statefiles etc) are now properly converted to absolute/relative paths when new entry is added.
+- Loading config with statefile config entry set: insert statefile in to statefile history list.
+- Topmost line was missing in OSD status line texts ("DF0: -" etc) in some font settings.
+- 5.1 b1 "Allow AUDxPER=1, game Spaceport requires it" adjusted, force period to higher value when sample loops (not immediately like pre-5.1 did). This keeps Spaceport happy without causing some other weird programs to slow down emulation very noticeably by "playing" period=1 empty sample continuously, all 4 channels. (For example during loading of Bad Dudes vs. Dragon Ninja)
+- Added S3 Trio64 PCI RTG board (Uses same chip emulation as CyberVision64)
+- Ateo Pixel 64 had BGR/RGB swapped colors in most color depths.
+- Sound autoswitching is now off by default (default off when no config file loaded). Some sound devices have annoying audible pop when sound gets switched off or on.
+- RTG modes allocated unnecessarily too large texture (size of whole viewport, not only actual RTG area). Broke in some 5.0 betas. This was harmless except it also caused uaegfx to not clip hardware mouse cursor in right and bottom edges and possibly broke some filters.
+- Fixed mouse cursor jumping randomly when in tablet mode and clicking mouse button(s).
+
 Beta 4:
 
 - Changing OSD font when in full-window or fullscreen mode saved it incorrectly and nothing changed.