@@ -183,6 +183,11 @@ class KryoFlux(Image):
check_index(f)
flux = track.flux()
+
+ # HxC crashes or fails to load non-index-cued stream files.
+ # So let's give it what it wants.
+ flux.cue_at_index()
factor = sck / flux.sample_freq
dat = bytearray()
@@ -176,6 +176,12 @@ class SCP(Image):
"""
+ # External tools and emulators generally seem to work best (or only)
+ # with index-cued SCP image files. So let's make sure we give them
+ # what they want.
if not flux.index_cued:
self.index_cued = False