From 0bcd56e949202fe3d30d7031f8004dcbcf95827f Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 25 Feb 2025 23:17:59 +0200 Subject: [PATCH] misc: time_bcd should actually be bcd --- libpcsxcore/misc.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c index 426e85bd..facf2296 100644 --- a/libpcsxcore/misc.c +++ b/libpcsxcore/misc.c @@ -60,11 +60,11 @@ struct iso_directory_record { char name [1]; }; -static void mmssdd( char *b, char *p ) +static void mmssdd(const char *b, char *p) { - int m, s, d; - unsigned char *ub = (void *)b; + const unsigned char *ub = (void *)b; int block = (ub[3] << 24) | (ub[2] << 16) | (ub[1] << 8) | ub[0]; + int m, s, d; block += 150; m = block / 4500; // minutes @@ -349,8 +349,11 @@ int LoadCdromFile(const char *filename, EXE_HEADER *head, u8 *time_bcd_out) { size -= 2048; addr += 2048; } - if (time_bcd_out) - memcpy(time_bcd_out, time, 3); + if (time_bcd_out) { + time_bcd_out[0] = itob(time[0]); + time_bcd_out[1] = itob(time[1]); + time_bcd_out[2] = itob(time[2]); + } return 0; } -- 2.39.5