]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
4500b5
authorToni Wilen <twilen@winuae.net>
Sun, 11 Oct 2020 17:43:46 +0000 (20:43 +0300)
committerToni Wilen <twilen@winuae.net>
Sun, 11 Oct 2020 17:43:46 +0000 (20:43 +0300)
custom.cpp
od-win32/win32.h
od-win32/winuaechangelog.txt

index c193b717c1be594e4fb86a5323c08c734283414c..3e60042e3294c247ced76c5342dcea7f11bbe6f6 100644 (file)
@@ -11468,6 +11468,7 @@ void check_prefs_changed_custom (void)
                inputdevice_copyconfig (&changed_prefs, &currprefs);
        currprefs.immediate_blits = changed_prefs.immediate_blits;
        currprefs.waiting_blits = changed_prefs.waiting_blits;
+       currprefs.blitter_speed_throttle = changed_prefs.blitter_speed_throttle;
        currprefs.collision_level = changed_prefs.collision_level;
        if (!currprefs.keyboard_connected && changed_prefs.keyboard_connected) {
                // send powerup sync
index 0b17e71b149c6db59f955b552db6502aa4914156..25c32267881d26686ad3691eda33274899aaa892 100644 (file)
 #define LANG_DLL_FULL_VERSION_MATCH 1
 
 #if WINUAEPUBLICBETA
-#define WINUAEBETA _T("Beta 4")
+#define WINUAEBETA _T("Beta 5")
 #else
 #define WINUAEBETA _T("")
 #endif
 
-#define WINUAEDATE MAKEBD(2020, 10, 10)
+#define WINUAEDATE MAKEBD(2020, 10, 11)
 
 //#define WINUAEEXTRA _T("AmiKit Preview")
 //#define WINUAEEXTRA _T("Amiga Forever Edition")
index 8053e2a237a78667137458f8a5006de11d241dbf..f3d77bc1714d1b1ac1e283205fba9a0c2b95c4a5 100644 (file)
@@ -1,4 +1,14 @@
 
+Beta 5:
+
+- If ADF started with 4 first bytes of executable (x000003f3), it was mounted as a bootable executable. Even if it was disk image and too large to fit in 880k image. Exe mounting is now only done if size is smaller than 880k and file extension is not known disk image extension. (B.A.T. II disk #4)
+- Read random data also if disk image is inserted, drive is selected but motor is stopped. Previously random data was only returned if drive was empty.
+- CV64/3D 15/16/24-bit graphics glitch fix (b4 debugging code)
+- CV64/3D emulated chip model was wrong, fixes WarpTest in perspective correct mode.
+
+CV64/3D + Picasso96 + Warp3D stuff sort of works. CV64/3D + CGX4 + Warp3D does not, reason unknown.
+
+Beta 4:
 
 - Implemented bsdsocket.library SBTC_GET_BYTES_RECEIVED and SBTC_GET_BYTES_SENT.
 - Fixed floppy max possible write length, was slightly too short, b1 fixed read timing.