a2stuff / a2d

Disassembly of the Apple II Desktop - ProDOS GUI
https://a2desktop.com
261 stars 20 forks source link

Get Size count wraps around over 32,768K #750

Closed inexorabletash closed 1 year ago

inexorabletash commented 1 year ago

Describe the bug When enumerating multiple volumes, the Get Size "Space used on disk" counter wraps when it goes over 32MB.

To Reproduce Steps to reproduce the behavior:

  1. Start DeskTop
  2. Select two volume icons where the total size is > 32K
  3. Special > Get Size

Expected behavior Accurate total count

Screenshots image

Root Cause A 16-bit counter is used for the total number of blocks. This is sufficient for a single ProDOS-8 volume, but not enough for multiple volumes.

inexorabletash commented 1 year ago

Bleah. Fixing will require:

inexorabletash commented 1 year ago

Note that if #749 is done then this may become moot.