From: <sba...@us...> - 2024-10-19 08:06:04
|
This is an automated email from the git hooks/post-receive-user script. sbaldovi pushed a commit to branch master in repository fuse-utils. View the commit online: https://sourceforge.net/p/fuse-emulator/fuse-utils/ci/98fc1ded794467a98436c5a6c239844f3d9f562d/ The following commit(s) were added to refs/heads/master by this push: new 98fc1de Fix description of TZX message blocks 98fc1de is described below commit 98fc1ded794467a98436c5a6c239844f3d9f562d Author: Alberto Garcia <be...@ig...> AuthorDate: Mon Oct 14 00:13:33 2024 +0200 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) --- tzxlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tzxlist.c b/tzxlist.c index 68c1b98..f15c3ef 100644 --- a/tzxlist.c +++ b/tzxlist.c @@ -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 */ |