Fix typo inside saving routine for Raspberry Pi Zero

This commit is contained in:
Paul Kania 2019-10-25 19:49:53 +02:00
parent 82b494a5e2
commit 60241440a8
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public:
else else
{ {
TestDirty(track, (dataOld & bitMask) != 0); TestDirty(track, (dataOld & bitMask) != 0);
tracks[(track << 13) + byte] &= bitMask; tracks[(track << 13) + byte] &= ~bitMask;
} }
#else #else
u8 dataOld = tracks[track][byte]; u8 dataOld = tracks[track][byte];