File tree 3 files changed +32
-2
lines changed
3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -110,3 +110,15 @@ void Init()
110
110
XexUtils::Log::Print("Console is not a devkit");
111
111
}
112
112
```
113
+
114
+ Detect if the code is running in [ Xenia] ( https://xenia.jp/ ) :
115
+
116
+ ``` C++
117
+ void Init ()
118
+ {
119
+ if (XexUtils::Xam::InXenia())
120
+ XexUtils::Log::Print ("Code is running in Xenia");
121
+ else
122
+ XexUtils::Log::Print("Code is not running in Xenia");
123
+ }
124
+ ```
Original file line number Diff line number Diff line change @@ -146,8 +146,24 @@ HRESULT MountHdd()
146
146
147
147
bool IsDevkit ()
148
148
{
149
- // Read a 32-bit unsigned int at 0x8E038610 and if the 16th is NOT set, the console is a devkit
150
- return !(Memory::Read<uint32_t >(0x8E038610 ) & (1 << 15 ));
149
+ // Read a 32-bit unsigned int at 0x8E038610 and if the 16th is NOT set, the console is a devkit.
150
+ // This bit is not set while running in Xenia so make sure that's not the case
151
+ return !(Memory::Read<uint32_t >(0x8E038610 ) & (1 << 15 )) && !InXenia ();
152
+ }
153
+
154
+ bool InXenia ()
155
+ {
156
+ // Inspired by this
157
+ // https://github.com/RBEnhanced/RB3Enhanced/blob/master/source/xbox360.c#L16
158
+
159
+ void *xamFirstExport = Memory::ResolveFunction (" xam.xex" , 1 );
160
+ #ifndef NDEBUG
161
+ if (xamFirstExport == nullptr )
162
+ DebugPrint (" [XexUtils][Xam]: Could not find the first function exported by xam.xex, this should not happen." );
163
+ #endif
164
+
165
+ // If Xam is not in the typical memory address space, we're in an emulator
166
+ return reinterpret_cast <uintptr_t >(xamFirstExport) >> 24 != 0x81 ;
151
167
}
152
168
153
169
}
Original file line number Diff line number Diff line change @@ -99,5 +99,7 @@ HRESULT MountHdd();
99
99
100
100
bool IsDevkit ();
101
101
102
+ bool InXenia ();
103
+
102
104
}
103
105
}
You can’t perform that action at this time.
0 commit comments