Andy McFadden

Results 35 issues of Andy McFadden

It'd be useful if switching between an AudioSource and BypassAudioSource were simple. For example, if "audio bypass" were switched off, or the device isn't an Android device, BypassAudioSource would simply...

enhancement

I think there's a race here: the play-on-awake feature calls Play() right after RegisterSoundFile(), but SoundPool loads the sound file asynchronously. So there's no guarantee that the sound is ready...

bug

I have a 256MB CF card in a USB reader plugged into a Windows 10 system. It takes 30+ seconds for CiderPress to open the volume, during which time it...

enhancement

EDASM source files are currently just displayed as formatted text. It'd look a bit better if the fields were tabbed out. There appears to be a bug in the file...

enhancement

While CiderPress is now able to display Mac OS Roman names properly, it still treats the characters as CP-1252 internally. There are two separate but related issues: (1) Handling of...

enhancement

[ imported from Anonymous bug, https://sourceforge.net/p/ciderpress/bugs/1/ ] Grab http://www.apple2.org.za/mirrors/ground.icaen.uiowa.edu/apple8/Games/FarFuture/TRADER.SDK Convert to a disk image (e.g. DSK). Open up in AppleWin (etc). Look at the random access text file "SHIPS", e.g....

enhancement

Repro steps (Linux): 1. Get an archive with a locked forked file. For example: - Create a forked file using the file preservation extensions. You can do this by creating...

bug

NuLib2 is single-threaded, and CiderPress only runs under windows, but ideally we'd wrap the interruptible I/O calls with TEMP_FAILURE_RETRY to prevent EINTR failures.

enhancement

The `DiskImg::NibbleDescr` struct has a `dataEpilogVerifyCount` field, but it's never actually used. This omission allows the "standard" profile to read some disks that it shouldn't (e.g. MECC). Not really a...

bug

The PrintCol() function does this for columns >= 26: ``` fPrintColBuf[0] = 'A' + col / 26; fPrintColBuf[1] = 'A' + col % 26; fPrintColBuf[2] = '\0'; ``` This jumps...

bug