From: Toni Wilen Date: Thu, 16 Jan 2025 19:04:56 +0000 (+0200) Subject: 6000b5 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=057955013cc9182d24ed833a377e3258ac72935c;p=francis%2Fwinuae.git 6000b5 --- diff --git a/od-win32/win32.h b/od-win32/win32.h index ff6cee93..6d101c5b 100644 --- a/od-win32/win32.h +++ b/od-win32/win32.h @@ -20,12 +20,12 @@ #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(2025, 1, 11) +#define WINUAEDATE MAKEBD(2025, 1, 16) //#define WINUAEEXTRA _T("AmiKit Preview") //#define WINUAEEXTRA _T("Amiga Forever Edition") diff --git a/od-win32/win32gui.cpp b/od-win32/win32gui.cpp index db9892fb..7a5ccb2a 100644 --- a/od-win32/win32gui.cpp +++ b/od-win32/win32gui.cpp @@ -21539,7 +21539,6 @@ static void enable_for_avioutputdlg (HWND hDlg) #endif ew (hDlg, IDC_SCREENSHOT, full_property_sheet ? FALSE : TRUE); - ew (hDlg, IDC_SAMPLERIPPER_ACTIVATED, full_property_sheet ? FALSE : TRUE); ew (hDlg, IDC_AVIOUTPUT_FILE, TRUE); @@ -21798,7 +21797,7 @@ static INT_PTR CALLBACK AVIOutputDlgProc (HWND hDlg, UINT msg, WPARAM wParam, LP break; #endif case IDC_SAMPLERIPPER_ACTIVATED: - if (ischecked(hDlg, IDC_AVIOUTPUT_ACTIVATED) != (sampleripper_enabled != 0)) { + if (ischecked(hDlg, IDC_SAMPLERIPPER_ACTIVATED) != (sampleripper_enabled != 0)) { sampleripper_enabled = !sampleripper_enabled; audio_sampleripper (-1); } diff --git a/od-win32/winuaechangelog.txt b/od-win32/winuaechangelog.txt index 5f03b3d4..db23f8e9 100644 --- a/od-win32/winuaechangelog.txt +++ b/od-win32/winuaechangelog.txt @@ -1,4 +1,16 @@ +Beta 5: + +- Autoscale filter fixed again. +- BPLCON4 was cleared when on the fly switching from OCS/ECS to AGA, causing wrong sprite colors. +- Wait for blitter option works again. +- "Remove interlace artifacts" option works again (with last line flicker, this will be fixed later). It now uses different logic which might work better when interlace mode is "non-standard". +- Prometheus FireStorm PCI IO space size is 2M, only lowest 1M was mapped and it also was not correctly mapped. +- Do not log Prometheus FireStorm status long read as config space accesses. +- Merged some minor Voodoo emulation updates from 86box. +- Added previously missing hardware feature: PAL/NTSC long line count always causes end of field, even if current LOF=0. (Only important when doing VPOSW tricks badly :)) NTSC long line horizontal is also always matched, even if LOL=0. +- Added address and length to sample ripper file names. +- Query PC drive/network drive/removable drive status only after confirming drive type first. (For example if "Add PC drives at startup" or "CDFS automount" is only ticked, don't query status of possible network drives that might respond slowly) Beta 4: