From 6d8f88c428c2ffb61f7251afae92e8bfbbe5350f Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 31 Aug 2022 00:02:47 +0300 Subject: [PATCH] Revert "Revert "misc: get rid of an unaligned read"" This reverts commit af0df01112a234b848be5fe87a2066bb938d356c. --- libpcsxcore/misc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c index f6fe19ad..854bbb85 100644 --- a/libpcsxcore/misc.c +++ b/libpcsxcore/misc.c @@ -56,10 +56,11 @@ struct iso_directory_record { char name [1]; }; -void mmssdd( char *b, char *p ) +static void mmssdd( char *b, char *p ) { int m, s, d; - int block = SWAP32(*((uint32_t*) b)); + unsigned char *ub = (void *)b; + int block = (ub[3] << 24) | (ub[2] << 16) | (ub[1] << 8) | ub[0]; block += 150; m = block / 4500; // minutes -- 2.39.2