From 9a158963055a195c152f9057ed2f888c1f61cd6e Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Sat, 5 May 2018 18:46:14 -0500 Subject: [PATCH] [XMA] Remove ReadRegister/WriteRegister debug output --- src/xenia/apu/xma_decoder.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/xenia/apu/xma_decoder.cc b/src/xenia/apu/xma_decoder.cc index 8bc0e8607..9767d66c7 100644 --- a/src/xenia/apu/xma_decoder.cc +++ b/src/xenia/apu/xma_decoder.cc @@ -235,7 +235,6 @@ bool XmaDecoder::BlockOnContext(uint32_t guest_ptr, bool poll) { uint32_t XmaDecoder::ReadRegister(uint32_t addr) { uint32_t r = addr & 0xFFFF; - XELOGAPU("ReadRegister(%.4X)", r); // 1800h is read on startup and stored -- context? buffers? // 1818h is read during a lock? @@ -262,7 +261,6 @@ void XmaDecoder::WriteRegister(uint32_t addr, uint32_t value) { uint32_t r = addr & 0xFFFF; value = xe::byte_swap(value); - XELOGAPU("WriteRegister(%.4X, %.8X)", r, value); // 1804h is written to with 0x02000000 and 0x03000000 around a lock operation assert_true(r % 4 == 0);