Bump to 1.26.0.5: Restore the y-shift for TV Color + TV B&W

This commit is contained in:
tomcw 2016-10-06 22:23:06 +01:00
parent 3e51f2f02f
commit ef9bb822fa
3 changed files with 6 additions and 5 deletions

View File

@ -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

View File

@ -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"

View File

@ -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)
{