From 741aaa696c9ef2d62d3ee7c39465efce11f9a8b6 Mon Sep 17 00:00:00 2001 From: Julian Uy Date: Tue, 2 Jun 2026 21:48:36 -0500 Subject: [PATCH] fix: use succeed instead of no format return value on erase block for non-sio2 backing --- iop/memorycard/mcman/src/mcsio2.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/iop/memorycard/mcman/src/mcsio2.c b/iop/memorycard/mcman/src/mcsio2.c index 613913d0063b..c8126bac856e 100644 --- a/iop/memorycard/mcman/src/mcsio2.c +++ b/iop/memorycard/mcman/src/mcsio2.c @@ -541,9 +541,12 @@ int mcman_eraseblock(int port, int slot, int block, void **pagebuf, void *eccbuf //HAKAMA_SIGNALSEMA(); return sceMcResFailReplace; } -#endif //HAKAMA_SIGNALSEMA(); return sceMcResNoFormat; +#else + //HAKAMA_SIGNALSEMA(); + return sceMcResSucceed; +#endif } //--------------------------------------------------------------