diff --git a/help/cfg-disk.html b/help/cfg-disk.html index 1d244155..924b3d2a 100644 --- a/help/cfg-disk.html +++ b/help/cfg-disk.html @@ -6,7 +6,7 @@

Disk Settings

-
Disk settings +
Disk settings

Floppy Controller Settings:

Enhanced disk access speed:
@@ -19,6 +19,10 @@ properly. This is the speed at which the real hardware would access data from your drives.

+

Show status:
+In 2x windowed-mode, optionally show the Track and Sector values for Drives 1 and 2 (for any Disk II cards in slots 5 and/or 6). +Hovering over this status will show a tooltip with both decimal and hexadecimal values, and the track includes the full fractional quarter track value too. +

Disk 1/2 drop-down menus (slot 6):
These menus allow you to select floppy disk images to 'insert' into the emulated floppy drives 1 and 2. This can also be done during emulation by using the toolbar or using the F3/F4 keys. Diskettes can be swapped by pressing F5 during emulation. You can also eject images from this menu. diff --git a/help/img/disk.png b/help/img/disk.png index 322a728c..493c7727 100644 Binary files a/help/img/disk.png and b/help/img/disk.png differ diff --git a/source/Windows/Win32Frame.cpp b/source/Windows/Win32Frame.cpp index d30963d7..ec8a4c58 100644 --- a/source/Windows/Win32Frame.cpp +++ b/source/Windows/Win32Frame.cpp @@ -60,7 +60,7 @@ Win32Frame::Win32Frame() g_bScrollLock_FullSpeed = false; - for (UINT slot = 0; slot < NUM_SLOTS; slot++) + for (UINT slot = SLOT0; slot < NUM_SLOTS; slot++) { g_nSector[slot][0] = -1; g_nSector[slot][1] = -1;