diff --git a/Assets/dll/uae.wbx.zst b/Assets/dll/uae.wbx.zst index f93a0daa0f..6b17be1550 100644 Binary files a/Assets/dll/uae.wbx.zst and b/Assets/dll/uae.wbx.zst differ diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/LibUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/LibUAE.cs index aec33fe2d9..66d1772c0a 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/LibUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/LibUAE.cs @@ -11,9 +11,9 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga public const int PAL_WIDTH = 720; public const int NTSC_WIDTH = PAL_WIDTH; // the core renders 576 which is what libretro displays - // but default window height is 568 in original UAE and WinUAE + // but default window height is 568 in original PUAE and WinUAE // this lets us hide a black line and a weird artifact that our A600 config has there - public const int PAL_HEIGHT = 568; + public const int PAL_HEIGHT = 574; // WinUAE displays 484 lines for NTSC // but libretro port only renders 482 and then only displays 480 public const int NTSC_HEIGHT = 482; diff --git a/waterbox/uae/bizhawk.h b/waterbox/uae/bizhawk.h index 37066b6b28..36bd1c494f 100644 --- a/waterbox/uae/bizhawk.h +++ b/waterbox/uae/bizhawk.h @@ -23,7 +23,7 @@ #include "libretro/libretro-core.h" static const int PUAE_WINDOW_HEIGHT_NTSC = 482; -static const int PUAE_WINDOW_HEIGHT_PAL = 568; +static const int PUAE_WINDOW_HEIGHT_PAL = 574; static const int FILENAME_MAXLENGTH = 64; static const int KEY_COUNT = 0x68;