From 7ac98c1068eb0ee8163ffb5eb7020a1f0d5034c4 Mon Sep 17 00:00:00 2001 From: zakk4223 Date: Sat, 3 Jan 2026 12:11:04 -0500 Subject: [PATCH] PSX: process save states before sending cue/metadata (#1080) --- support/psx/psx.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/psx/psx.cpp b/support/psx/psx.cpp index f9f3c9c..d384aa5 100644 --- a/support/psx/psx.cpp +++ b/support/psx/psx.cpp @@ -782,10 +782,10 @@ void psx_mount_cd(int f_index, int s_index, const char *filename) mask = libCryptMask(&sbi_file); } + process_ss(filename, name_len != 0); send_cue_and_metadata(&toc, mask, region, reset); user_io_set_index(f_index); - process_ss(filename, name_len != 0); mount_cd(toc.end*CD_SECTOR_LEN, s_index); loaded = 1; @@ -809,4 +809,4 @@ void psx_poll() void psx_reset() { noreset = 0; -} \ No newline at end of file +}