]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
5310 5310
authorToni Wilen <twilen@winuae.net>
Mon, 21 Oct 2024 14:32:04 +0000 (17:32 +0300)
committerToni Wilen <twilen@winuae.net>
Mon, 21 Oct 2024 14:32:04 +0000 (17:32 +0300)
od-win32/resources/winuae.rc
od-win32/rp.cpp
od-win32/win32.h
od-win32/winuaechangelog.txt
od-win32/wix/Product.wxs

index 7795722bd3843d781682e39ac313ee1cec3a7e66..c2d8728ede3c1125c1c4646cc7dff075b47fd315 100644 (file)
@@ -1431,8 +1431,8 @@ END
 //
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 5,3,0,0
- PRODUCTVERSION 5,3,0,0
+ FILEVERSION 5,3,1,0
+ PRODUCTVERSION 5,3,1,0
  FILEFLAGSMASK 0x3fL
 #ifdef _DEBUG
  FILEFLAGS 0x1L
@@ -1448,12 +1448,12 @@ BEGIN
         BLOCK "040904b0"
         BEGIN
             VALUE "FileDescription", "WinUAE"
-            VALUE "FileVersion", "5.3.0.0"
+            VALUE "FileVersion", "5.3.1.0"
             VALUE "InternalName", "WinUAE"
             VALUE "LegalCopyright", "© 1996-2024 under the GNU Public License (GPL)"
             VALUE "OriginalFilename", "WinUAE.exe"
             VALUE "ProductName", "WinUAE"
-            VALUE "ProductVersion", "5.3.0.0"
+            VALUE "ProductVersion", "5.3.1.0"
         END
     END
     BLOCK "VarFileInfo"
index f6c9ed35f8721e31ba3158c6ea448d9c9a10b7b4..ca207ad79896d1395935770b9e580bc09e6743d6 100644 (file)
@@ -1127,14 +1127,8 @@ static void set_screenmode (struct RPScreenMode *sm, struct uae_prefs *p)
                                        p->gfx_ycenter_size = sm->lClipHeight;
                                p->gf[0].gfx_filter_top_border = sm->lClipTop;
                                p->gf[0].gfx_filter_bottom_border = sm->lClipTop + sm->lClipHeight;
-
-                               if (hdbl > RES_MAX) {
-                                       p->gf[0].gfx_filter_left_border = sm->lClipLeft << (hdbl - RES_MAX);
-                                       p->gf[0].gfx_filter_right_border = p->gf[0].gfx_filter_left_border + (sm->lClipWidth << (hdbl - RES_MAX));
-                               } else {
-                                       p->gf[0].gfx_filter_left_border = sm->lClipLeft >> (RES_MAX - hdbl);
-                                       p->gf[0].gfx_filter_right_border = p->gf[0].gfx_filter_left_border + (sm->lClipWidth >> (RES_MAX - hdbl));
-                               }
+                               p->gf[0].gfx_filter_left_border = sm->lClipLeft;
+                               p->gf[0].gfx_filter_right_border = p->gf[0].gfx_filter_left_border + sm->lClipWidth;
                                // backwards compatibility fix
                                p->gf[0].gfx_filter_left_border -= 0x38 * 4;
                                p->gf[0].gfx_filter_right_border -= 0x38 * 4;
index 16b056b45aa33d27031604cb52bc73eaa80c063c..40f0165cfaa10fa40dfbd71c9d2ed420469b8dfb 100644 (file)
 #define GETBDM(x) (((x) - ((x / 10000) * 10000)) / 100)
 #define GETBDD(x) ((x) % 100)
 
-#define WINUAEPUBLICBETA 1
+#define WINUAEPUBLICBETA 0
 #define LANG_DLL 1
 #define LANG_DLL_FULL_VERSION_MATCH 0
 
 #if WINUAEPUBLICBETA
-#define WINUAEBETA _T("3")
+#define WINUAEBETA _T("")
 #else
 #define WINUAEBETA _T("")
 #endif
 
-#define WINUAEDATE MAKEBD(2024, 10, 12)
+#define WINUAEDATE MAKEBD(2024, 10, 18)
 
 //#define WINUAEEXTRA _T("AmiKit Preview")
 //#define WINUAEEXTRA _T("Amiga Forever Edition")
index 789d487b13d25f989f1741fba5eacf98076813c7..dfce628734f0fcc5922d0ce4b08daeb10a5635e4 100644 (file)
@@ -1,6 +1,7 @@
 
-This is quick 5.3.1 beta series, normal update to 5.3.0. You might have heard that I have started rewriting (almost) whole custom chipset emulation few months ago. This isn't it. Still work to do, it isn't that useful in fast CPU modes yet.
+5.3.1
 
+This is quick 5.3.1 beta series, normal update to 5.3.0. You might have heard that I have started rewriting (almost) whole custom chipset emulation few months ago. This isn't it. Still work to do, it isn't that useful in fast CPU modes yet.
 
 Beta 3:
 
index 5e8ceb1d9171e5fedfa928a6aaa710de9f5984ab..aa5f8e82bc76917da7ec573bb602a2210533f3e3 100644 (file)
@@ -2,8 +2,8 @@
 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
 
   <?define ProductName = "WinUAE" ?>
-  <?define ProductVersion = "5.3.0" ?>
-  <?define ProductFullVersion = "5.3.0.0" ?>
+  <?define ProductVersion = "5.3.1" ?>
+  <?define ProductFullVersion = "5.3.1.0" ?>
   <?define ProductAuthor = "Arabuusimiehet" ?>
 
   <?if $(var.Platform) = x64 ?>