From ef9bb822fadb7dcd5d16adde4efe31c6b9df9681 Mon Sep 17 00:00:00 2001 From: tomcw Date: Thu, 6 Oct 2016 22:23:06 +0100 Subject: [PATCH] Bump to 1.26.0.5: Restore the y-shift for TV Color + TV B&W --- bin/History.txt | 2 +- resource/Applewin.rc | 8 ++++---- source/Video.cpp | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bin/History.txt b/bin/History.txt index 01654f6c..eebe9927 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -9,7 +9,7 @@ https://github.com/AppleWin/AppleWin/issues/new Tom Charlesworth -1.26.0.4 (beta) - 2 Oct 2016 +1.26.0.5 (beta) - 6 Oct 2016 ---------------------------- Changes: . [Bug #126,#157,#194] Beta NTSC and cycle-accurate video support diff --git a/resource/Applewin.rc b/resource/Applewin.rc index 86f30b71..df3845da 100644 --- a/resource/Applewin.rc +++ b/resource/Applewin.rc @@ -250,8 +250,8 @@ DISK_ICON ICON "DISK.ICO" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,0,4 - PRODUCTVERSION 1,26,0,4 + FILEVERSION 1,26,0,5 + PRODUCTVERSION 1,26,0,5 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -269,12 +269,12 @@ BEGIN VALUE "Comments", "https://github.com/AppleWin" VALUE "CompanyName", "AppleWin" VALUE "FileDescription", "Apple //e Emulator for Windows" - VALUE "FileVersion", "1, 26, 0, 4" + VALUE "FileVersion", "1, 26, 0, 5" VALUE "InternalName", "APPLEWIN" VALUE "LegalCopyright", " 1994-2016 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis" VALUE "OriginalFilename", "APPLEWIN.EXE" VALUE "ProductName", "Apple //e Emulator" - VALUE "ProductVersion", "1, 26, 0, 4" + VALUE "ProductVersion", "1, 26, 0, 5" END END BLOCK "VarFileInfo" diff --git a/source/Video.cpp b/source/Video.cpp index edef4783..798b8f96 100644 --- a/source/Video.cpp +++ b/source/Video.cpp @@ -1220,6 +1220,7 @@ void VideoRefreshScreen ( int bVideoModeFlags, bool bRedrawWholeScreen /* =false { // Adjust the src locations for the NTSC video modes xSrc += 2; + ySrc -= 1; } else if (g_eVideoType == VT_COLOR_MONITOR) {