diff options
author | bunnei <bunneidev@gmail.com> | 2017-10-13 23:56:42 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-10-13 23:56:42 +0200 |
commit | d62750c46d41df776f87eaf8a19d5800b1be5dec (patch) | |
tree | 259838d03d1952be0c876b0b04aedaf5c17b067f /src/core/hw/gpu.cpp | |
parent | Remove more 3DS-specific code. (diff) | |
download | yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.tar yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.tar.gz yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.tar.bz2 yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.tar.lz yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.tar.xz yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.tar.zst yuzu-d62750c46d41df776f87eaf8a19d5800b1be5dec.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hw/gpu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp index d1bfe51e6..c828a776e 100644 --- a/src/core/hw/gpu.cpp +++ b/src/core/hw/gpu.cpp @@ -420,9 +420,9 @@ inline void Write(u32 addr, const T data) { // TODO: hwtest this if (config.GetStartAddress() != 0) { if (!is_second_filler) { - Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PSC0); + //Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PSC0); } else { - Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PSC1); + //Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PSC1); } } @@ -463,7 +463,7 @@ inline void Write(u32 addr, const T data) { } g_regs.display_transfer_config.trigger = 0; - Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PPF); + //Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PPF); } break; } |