We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 858af5a commit 4a3b04dCopy full SHA for 4a3b04d
src/xenia/kernel/xam/xam_info.cc
@@ -222,6 +222,11 @@ dword_result_t XGetLanguage_entry() {
222
}
223
DECLARE_XAM_EXPORT1(XGetLanguage, kNone, kImplemented);
224
225
+dword_result_t XamGetCurrentTitleId_entry() {
226
+ return kernel_state()->emulator()->title_id();
227
+}
228
+DECLARE_XAM_EXPORT1(XamGetCurrentTitleId, kNone, kImplemented);
229
+
230
dword_result_t XamGetExecutionId_entry(lpdword_t info_ptr) {
231
auto module = kernel_state()->GetExecutableModule();
232
assert_not_null(module);
0 commit comments