Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehjohn committed Aug 10, 2024
1 parent 1d9c608 commit 26a3587
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Zen.Desktop.Host/Features/VideoRamVisualiser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void RenderBank(int panel, int startAddress)
}
}

if (AppSettings.Instance.Speed == Speed.Slow && _videoRenderer.ScanY > -1 && _videoRenderer.ScanY < Constants.ScreenHeightPixels - 3)
if (AppSettings.Instance.Speed == Speed.Slow && _videoRenderer.ScanY > -1 && _videoRenderer.ScanY < Constants.ScreenHeightPixels - 4)
{
for (var x = 0; x < Constants.ScreenWidthPixels; x++)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Zen.Z80/Zen.Z80.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Description>A dotnet Z80 emulator implementation.</Description>
<Copyright>MIT</Copyright>
<RepositoryUrl>https://github.com/stevehjohn/Zen</RepositoryUrl>
<Version>1.1.4</Version>
<Version>1.1.5</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 26a3587

Please sign in to comment.