From fc8753501f8eb98b2f5923333f73e156f1ed73aa Mon Sep 17 00:00:00 2001 From: tomcw Date: Thu, 13 Feb 2020 19:39:35 +0000 Subject: [PATCH] 1.29.10.0: Updated version --- bin/History.txt | 4 ++-- resource/version.h | 2 +- source/Disk.cpp | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bin/History.txt b/bin/History.txt index 8a657725..3435ce11 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -9,8 +9,8 @@ https://github.com/AppleWin/AppleWin/issues/new Tom Charlesworth -1.29.10.0 - ? Feb 2020 ----------------------- +1.29.10.0 - 13 Feb 2020 +----------------------- . [PR #756] Write support for WOZ1/WOZ2 images. - Fixes titles that need write support (see: #686, #704, #705). - Allow creation of a blank (WOZ2) image (see AppleWin.chm: 'Creating Disk Images'). diff --git a/resource/version.h b/resource/version.h index c4c9e727..0688de60 100644 --- a/resource/version.h +++ b/resource/version.h @@ -1,4 +1,4 @@ -#define APPLEWIN_VERSION 1,29,9,0 +#define APPLEWIN_VERSION 1,29,10,0 #define xstr(a) str(a) #define str(a) #a diff --git a/source/Disk.cpp b/source/Disk.cpp index 89809cd5..bf94a0ab 100644 --- a/source/Disk.cpp +++ b/source/Disk.cpp @@ -1569,7 +1569,8 @@ void __stdcall Disk2InterfaceCard::LoadWriteProtect(WORD, WORD, BYTE write, BYTE const UINT bitCellDelta = GetBitCellDelta(uExecutedCycles); UpdateBitStreamPosition(floppy, bitCellDelta); // Fix E7-copy protection - // UpdateBitStreamPosition() must be done below ResetLSS, as the former clears m_resetSequencer. (Commando.woz is sensitive to this) + // UpdateBitStreamPosition() must be done below ResetLSS, as the former clears m_resetSequencer. + // . Commando.woz is sensitive to this. EG. It can crash after pressing 'J' (1 failure in 20 reboot repeats) ResetLogicStateSequencer(); // reset sequencer (UTAIIe page 9-21) } }