diff --git a/bin/History.txt b/bin/History.txt index a2cb8400..31f5da6a 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.1 (beta) - 17 Sept 2016 +1.26.0.2 (beta) - 18 Sept 2016 ------------------------------ Changes: . [Bug #126,#157,#194] Beta NTSC support diff --git a/resource/Applewin.rc b/resource/Applewin.rc index d679e30d..67573c3e 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,1 - PRODUCTVERSION 1,26,0,1 + FILEVERSION 1,26,0,2 + PRODUCTVERSION 1,26,0,2 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, 1" + VALUE "FileVersion", "1, 26, 0, 2" 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, 1" + VALUE "ProductVersion", "1, 26, 0, 2" END END BLOCK "VarFileInfo" diff --git a/source/Applewin.cpp b/source/Applewin.cpp index 3b8aef53..9a1b779d 100644 --- a/source/Applewin.cpp +++ b/source/Applewin.cpp @@ -284,11 +284,10 @@ void ContinueExecution(void) g_dwCyclesThisFrame -= dwClksPerFrame; if (g_bFullSpeed) - { VideoRedrawScreenDuringFullSpeed(g_dwCyclesThisFrame); - } + else + VideoRefreshScreen(0); // Just copy the output of our Apple framebuffer to the system Back Buffer - VideoRefreshScreen(0); // Just copy the output of our Apple framebuffer to the system Back Buffer MB_EndOfVideoFrame(); }