You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Loading .wav files by name supplied from LMEM or LOAD currently does not make any sense.
Example
Let's say that you want to load SPACEINV.WAV which is a tape recording of a Space Invaders clone by PELsoft (Barišić Krunoslav - KMI Borovo).
You would type in BASIC:
LMEM"SPACEINV"
Emulator would open wav/SPACEINV.WAVtape file, but BASIC's LMEM would not load Space Invaders, because it expects that a tape contains file named SPACEINV, yet file (BASIC loader) on tape file is actually named S.INVADERS, so LMEM ignores it.
Renaming a file to wav/S.INVADERS.WAV, and loading with LMEM"S.INVADERS", also doesn't help, because file name recorded in .wav file header still doesn't match file name requested in LMEM argument.
Workaround
Actually, renaming wav/SPACEINV.WAV to just wav/.WAV works when loading with LMEM"", because LMEM loads first thing found on tape.
The text was updated successfully, but these errors were encountered:
Loading
.wav
files by name supplied from LMEM or LOAD currently does not make any sense.Example
Let's say that you want to load
SPACEINV.WAV
which is a tape recording of a Space Invaders clone by PELsoft (Barišić Krunoslav - KMI Borovo).You would type in BASIC:
Emulator would open
wav/SPACEINV.WAV
tape file, but BASIC's LMEM would not load Space Invaders, because it expects that a tape contains file namedSPACEINV
, yet file (BASIC loader) on tape file is actually namedS.INVADERS
, so LMEM ignores it.Renaming a file to
wav/S.INVADERS.WAV
, and loading withLMEM"S.INVADERS"
, also doesn't help, because file name recorded in.wav
file header still doesn't match file name requested in LMEM argument.Workaround
Actually, renaming
wav/SPACEINV.WAV
to justwav/.WAV
works when loading withLMEM""
, because LMEM loads first thing found on tape.The text was updated successfully, but these errors were encountered: