mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[Kernel] Prevent $flash_xam from initialization while loading dashboard
This commit is contained in:
parent
cbde83b912
commit
e45f547a49
|
|
@ -68,7 +68,7 @@ class UserModule : public XModule {
|
||||||
bool is_dll_module() const { return is_dll_module_; }
|
bool is_dll_module() const { return is_dll_module_; }
|
||||||
bool is_attached() const {
|
bool is_attached() const {
|
||||||
// Special case for skipping real XAM initialization as it will fail.
|
// Special case for skipping real XAM initialization as it will fail.
|
||||||
if (name_ == "xam") {
|
if (name_ == "xam" || name_ == "$flash_xam") {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return is_attached_;
|
return is_attached_;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue