From 79a08bcdf1ebc1f056e6499d518aa48bbf382093 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Sun, 5 Jan 2014 02:04:16 -0800 Subject: [PATCH] XNotifyPositionUI stub. --- src/xenia/kernel/xam_notify.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/xenia/kernel/xam_notify.cc b/src/xenia/kernel/xam_notify.cc index 8ff4af196..0fce7ba96 100644 --- a/src/xenia/kernel/xam_notify.cc +++ b/src/xenia/kernel/xam_notify.cc @@ -100,6 +100,18 @@ SHIM_CALL XNotifyGetNext_shim( } +SHIM_CALL XNotifyPositionUI_shim( + PPCContext* ppc_state, KernelState* state) { + uint32_t position = SHIM_GET_ARG_32(0); + + XELOGD( + "XNotifyPositionUI(%.8X)", + position); + + // Ignored. +} + + } // namespace kernel } // namespace xe @@ -108,4 +120,5 @@ void xe::kernel::xam::RegisterNotifyExports( ExportResolver* export_resolver, KernelState* state) { SHIM_SET_MAPPING("xam.xex", XamNotifyCreateListener, state); SHIM_SET_MAPPING("xam.xex", XNotifyGetNext, state); + SHIM_SET_MAPPING("xam.xex", XNotifyPositionUI, state); }