1
0
mirror of https://git.code.sf.net/p/fuse-emulator/fuse-utils synced 2025-04-19 08:42:15 +03:00

Fix description of TZX message blocks

TZX message blocks specify the time in seconds, but libspectrum's
tzx_read_message() stores it internally in miliseconds.

(fixes bug #502)
This commit is contained in:
Alberto Garcia 2024-10-14 00:13:33 +02:00 committed by Sergio Baldoví
parent 99101d6964
commit 98fc1ded79

View File

@ -608,7 +608,7 @@ process_tape( char *filename )
case LIBSPECTRUM_TAPE_BLOCK_MESSAGE:
printf(" Display for %d seconds\n",
printf(" Display for %d ms\n",
libspectrum_tape_block_pause( block ) );
/* Fall through */