Speed-up booting AZTEC.DSK (#347)

This commit is contained in:
tomcw 2016-09-18 15:56:22 +01:00
parent 3dbc44dac5
commit 1d34497d2d
3 changed files with 7 additions and 8 deletions

View file

@ -9,7 +9,7 @@ https://github.com/AppleWin/AppleWin/issues/new
Tom Charlesworth Tom Charlesworth
1.26.0.1 (beta) - 17 Sept 2016 1.26.0.2 (beta) - 18 Sept 2016
------------------------------ ------------------------------
Changes: Changes:
. [Bug #126,#157,#194] Beta NTSC support . [Bug #126,#157,#194] Beta NTSC support

View file

@ -250,8 +250,8 @@ DISK_ICON ICON "DISK.ICO"
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,26,0,1 FILEVERSION 1,26,0,2
PRODUCTVERSION 1,26,0,1 PRODUCTVERSION 1,26,0,2
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -269,12 +269,12 @@ BEGIN
VALUE "Comments", "https://github.com/AppleWin" VALUE "Comments", "https://github.com/AppleWin"
VALUE "CompanyName", "AppleWin" VALUE "CompanyName", "AppleWin"
VALUE "FileDescription", "Apple //e Emulator for Windows" VALUE "FileDescription", "Apple //e Emulator for Windows"
VALUE "FileVersion", "1, 26, 0, 1" VALUE "FileVersion", "1, 26, 0, 2"
VALUE "InternalName", "APPLEWIN" VALUE "InternalName", "APPLEWIN"
VALUE "LegalCopyright", " 1994-2016 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis" VALUE "LegalCopyright", " 1994-2016 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis"
VALUE "OriginalFilename", "APPLEWIN.EXE" VALUE "OriginalFilename", "APPLEWIN.EXE"
VALUE "ProductName", "Apple //e Emulator" VALUE "ProductName", "Apple //e Emulator"
VALUE "ProductVersion", "1, 26, 0, 1" VALUE "ProductVersion", "1, 26, 0, 2"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View file

@ -284,11 +284,10 @@ void ContinueExecution(void)
g_dwCyclesThisFrame -= dwClksPerFrame; g_dwCyclesThisFrame -= dwClksPerFrame;
if (g_bFullSpeed) if (g_bFullSpeed)
{
VideoRedrawScreenDuringFullSpeed(g_dwCyclesThisFrame); 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(); MB_EndOfVideoFrame();
} }