Skip to content

Commit

Permalink
uae: fix DevilsTemple
Browse files Browse the repository at this point in the history
  • Loading branch information
vadosnaprimer committed Dec 14, 2024
1 parent 18078c8 commit fc2b37c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<Compile Update="Arcades/MAME/MAME.*.cs" DependentUpon="MAME.cs" />
<Compile Update="Calculators/Emu83/Emu83.*.cs" DependentUpon="Emu83.cs" />
<Compile Update="Calculators/TI83/TI83.*.cs" DependentUpon="TI83.cs" />
<Compile Update="Computers/Amiga/PUAE.*.cs" DependentUpon="PUAE.cs" />
<Compile Update="Computers/Amiga/UAE.*.cs" DependentUpon="UAE.cs" />
<Compile Update="Computers/AppleII/AppleII.*.cs" DependentUpon="AppleII.cs" />
<Compile Update="Computers/Commodore64/C64.*.cs" DependentUpon="C64.cs" />
<Compile Update="Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.*.cs" DependentUpon="NECUPD765.cs" />
Expand Down
4 changes: 2 additions & 2 deletions src/BizHawk.Emulation.Cores/Computers/Amiga/UAE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public partial class UAE : WaterboxCore
private static readonly Configuration ConfigPAL = new Configuration
{
SystemId = VSystemID.Raw.Amiga,
MaxSamples = 2 * 1024,
MaxSamples = 8 * 1024,
DefaultWidth = LibUAE.PAL_WIDTH,
DefaultHeight = LibUAE.PAL_HEIGHT,
MaxWidth = LibUAE.PAL_WIDTH,
Expand All @@ -30,7 +30,7 @@ public partial class UAE : WaterboxCore
private static readonly Configuration ConfigNTSC = new Configuration
{
SystemId = VSystemID.Raw.Amiga,
MaxSamples = 2 * 1024,
MaxSamples = 8 * 1024,
DefaultWidth = LibUAE.NTSC_WIDTH,
DefaultHeight = LibUAE.NTSC_HEIGHT,
// games never switch region, and video dumping won't be happy, but amiga can still do it
Expand Down

0 comments on commit fc2b37c

Please sign in to comment.