]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
4000b15
authorToni Wilen <twilen@winuae.net>
Mon, 18 Jun 2018 20:09:37 +0000 (23:09 +0300)
committerToni Wilen <twilen@winuae.net>
Mon, 18 Jun 2018 20:09:37 +0000 (23:09 +0300)
hardfile.cpp
od-win32/win32.h
od-win32/winuaechangelog.txt
scsitape.cpp

index 393b18cd33406059e2a61424d1ce2af5181b9450..3ebd02eec105222bff81fe138021a9f61c90fb02 100644 (file)
@@ -99,14 +99,14 @@ static struct hardfileprivdata hardfpd[MAX_FILESYSTEM_UNITS];
 
 static uae_u32 nscmd_cmd;
 
-static void wl (uae_u8 *p, int v)
+static void wl (uae_u8 *p, uae_u32 v)
 {
        p[0] = v >> 24;
        p[1] = v >> 16;
        p[2] = v >> 8;
        p[3] = v;
 }
-static void ww (uae_u8 *p, int v)
+static void ww (uae_u8 *p, uae_u16 v)
 {
        p[0] = v >> 8;
        p[1] = v;
index 1223410565dd1613accaf9d8669135ceb5c508a7..6b7fc04fbf2cb2e637b22e82a5524f2350c9eae2 100644 (file)
 #define LANG_DLL_FULL_VERSION_MATCH 1
 
 #if WINUAEPUBLICBETA
-#define WINUAEBETA _T("14")
+#define WINUAEBETA _T("15")
 #else
 #define WINUAEBETA _T("")
 #endif
 
-#define WINUAEDATE MAKEBD(2018, 6, 17)
+#define WINUAEDATE MAKEBD(2018, 6, 18)
 
 //#define WINUAEEXTRA _T("AmiKit Preview")
 //#define WINUAEEXTRA _T("Amiga Forever Edition")
index d8d4db8f7b6c724147ceebd2198d0bd2d1e3eee8..f719e7929796b2c28b7294790e7e16d5f0dc90f1 100644 (file)
@@ -1,5 +1,11 @@
 \r
 \r
+Beta 15:\r
+\r
+- JIT cache size limit was in wrong validation routine, was ignored by on the fly changes (for example uae-configuration).\r
+- Harddrive imager now also supports native (mainboard/expansion board) IDE connected CHS-only drives.\r
+- Softfloat: 68040 only FPU undocumented feature emulated, FCMP with either (or both) parameters NaN with sign bit set: N-flag gets set.\r
+\r
 Beta 14:\r
 \r
 - Virtual RDB (generated when partition hardfile is mounted in non-UAE controller) now also supports >512 block size partitions.\r
index bc0bde0750a023e417e2c170b5ba3abe19d6bbc6..2848bcdc0a0eea054d0f22403e2c58e378d4eb53 100644 (file)
@@ -36,7 +36,7 @@ static int rl (uae_u8 *p)
 {
        return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3]);
 }
-static void wl (uae_u8 *p, int v)
+static void wl (uae_u8 *p, uae_u32 v)
 {
        p[0] = v >> 24;
        p[1] = v >> 16;