From e45f547a49fabaa480ab86034ee7b80573eafd8a Mon Sep 17 00:00:00 2001 From: Adrian <78108584+AdrianCassar@users.noreply.github.com> Date: Fri, 15 Aug 2025 20:30:56 +0100 Subject: [PATCH] [Kernel] Prevent $flash_xam from initialization while loading dashboard --- src/xenia/kernel/user_module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/kernel/user_module.h b/src/xenia/kernel/user_module.h index 412ed9708..85d7e0864 100644 --- a/src/xenia/kernel/user_module.h +++ b/src/xenia/kernel/user_module.h @@ -68,7 +68,7 @@ class UserModule : public XModule { bool is_dll_module() const { return is_dll_module_; } bool is_attached() const { // Special case for skipping real XAM initialization as it will fail. - if (name_ == "xam") { + if (name_ == "xam" || name_ == "$flash_xam") { return true; } return is_attached_;