1.29.10.0: Updated version

This commit is contained in:
tomcw 2020-02-13 19:39:35 +00:00
parent ad599680d2
commit fc8753501f
3 changed files with 5 additions and 4 deletions

View File

@ -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').

View File

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

View File

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