From dbe9b25a65974b579a35e7625e81ceadab791007 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Wed, 11 Feb 2015 09:55:13 -0800 Subject: [PATCH] Logging for XMPCaptureOutput in #140. --- src/xenia/kernel/apps/xmp_app.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/xenia/kernel/apps/xmp_app.cc b/src/xenia/kernel/apps/xmp_app.cc index 27b99233f..a6bd65ade 100644 --- a/src/xenia/kernel/apps/xmp_app.cc +++ b/src/xenia/kernel/apps/xmp_app.cc @@ -432,6 +432,12 @@ X_RESULT XXMPApp::DispatchMessageSync(uint32_t message, uint32_t buffer_ptr, poly::store_and_swap(membase_ + size_ptr, song_count * 128); return X_ERROR_SUCCESS; } + case 0x0007003D: { + // XMPCaptureOutput - not sure how this works :/ + XELOGD("XMPCaptureOutput(...)"); + assert_always("XMP output not unimplemented"); + return X_ERROR_INVALID_PARAMETER; + } } XELOGE("Unimplemented XMsg message app=%.8X, msg=%.8X, arg1=%.8X, arg2=%.8X", app_id(), message, buffer_ptr, buffer_length);