[Kernel] Only set privilege 0xB if mount_cache is set
This commit is contained in:
parent
174e82064c
commit
062af5944b
|
@ -15,6 +15,8 @@
|
|||
#include "xenia/kernel/xboxkrnl/xboxkrnl_private.h"
|
||||
#include "xenia/xbox.h"
|
||||
|
||||
DECLARE_bool(mount_cache);
|
||||
|
||||
namespace xe {
|
||||
namespace kernel {
|
||||
namespace xboxkrnl {
|
||||
|
@ -32,7 +34,7 @@ dword_result_t XexCheckExecutablePrivilege(dword_t privilege) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (privilege == 0xB) { // TitleInsecureUtilityDrive
|
||||
if (cvars::mount_cache && privilege == 0xB) { // TitleInsecureUtilityDrive
|
||||
// If this privilege is set, the cache-partition code baked into most
|
||||
// games skips a huge chunk of device-init code (registering a custom
|
||||
// STFC filesystem handler with the kernel, etc), and just symlinks the
|
||||
|
|
Loading…
Reference in New Issue