Skip to content

Commit

Permalink
Fix fullscreen garbage issue
Browse files Browse the repository at this point in the history
  • Loading branch information
atarimacosx committed Jan 22, 2022
1 parent e28003d commit e611f03
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
Expand Up @@ -18,11 +18,11 @@
</tbody>
</table>

<br>Version 5.5.1 Release 01-08-2021<br>&nbsp;
<br>Version 6.0.1 Release 01-21-2022<br>&nbsp;
&nbsp;&nbsp; Bugs Fixed:<br>
<ul>
<li>Fixed issues with mounting hard disk images created
inside the emulator (with .img instead of .vhd extensions)</li>
<li>Fixed issues in full screen with fixed aspect ratios and
garbage being displayed on the screen.</li>
</ul>


Expand Down
Expand Up @@ -222,6 +222,12 @@ <h1>What happens if the&nbsp;Emulated Atari crashes?</h1>

<h1>What's New in 6.x?</h1>

<h4>Bug Fixes (in version 6.0.1):</h4>
<ul>
<li>Fixed issues in full screen with fixed aspect ratios and
garbage being displayed on the screen.</li>
</ul>

<h4>New Features (in version 6.0.0):</h4>
<ul>
<li>Added support for ARM based M1 Macs.</li>
Expand Down
2 changes: 1 addition & 1 deletion atari800-MacOSX/src/Atari800MacX/Credits.html
Expand Up @@ -17,7 +17,7 @@
Copyright © 1998-2020 Atari800 Development Team<br>
<br>
macOS version by Mark Grebe<br>
</big><big>Copyright © 2002-2021 <br>
</big><big>Copyright © 2002-2022 <br>
<br>
</big><big>atarimacosx@gmail.com<br>
http://www.atarimac.com<br>
Expand Down
6 changes: 3 additions & 3 deletions atari800-MacOSX/src/Atari800MacX/Info-Atari800MacX.plist
Expand Up @@ -137,7 +137,7 @@
<key>CFBundleExecutable</key>
<string>Atari800MacX</string>
<key>CFBundleGetInfoString</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleHelpBookFolder</key>
<string>Atari800MacX Help</string>
<key>CFBundleHelpBookName</key>
Expand All @@ -153,11 +153,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleSignature</key>
<string>A8MX</string>
<key>CFBundleVersion</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2002-2021 Mark Grebe</string>
<key>NSMainNibFile</key>
Expand Down
1 change: 1 addition & 0 deletions atari800-MacOSX/src/Atari800MacX/atari_mac_sdl.c
Expand Up @@ -3125,6 +3125,7 @@ void Atari_DisplayScreen(UBYTE * screen)
rect.y = screen_y_offset;
rect.w = MainScreen->w;
rect.h = MainScreen->h;
SDL_RenderClear(renderer);
SDL_RenderCopy(renderer, texture, NULL, &rect);

// Add the scanlines if we are in that mode
Expand Down

0 comments on commit e611f03

Please sign in to comment.