From c86d5b21aa69861a5ad19a0c0c5def767962475e Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 25 Mar 2025 00:27:34 +0200 Subject: [PATCH] misc: unbreak slowboot Fixes: 0b6f8a28056646a35b7d54689831107eb7932e0f notaz/pcsx_rearmed#360 --- libpcsxcore/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c index facf2296..172fdd2c 100644 --- a/libpcsxcore/misc.c +++ b/libpcsxcore/misc.c @@ -361,7 +361,7 @@ int LoadCdromFile(const char *filename, EXE_HEADER *head, u8 *time_bcd_out) { int CheckCdrom() { struct iso_directory_record *dir; struct CdrStat stat = { 0, 0, }; - unsigned char time[4]; + unsigned char time[4] = { 0, 2, 4 }; char *buf; unsigned char mdir[4096]; char exename[256]; -- 2.39.5