summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hw/gpu.cpp')
-rw-r--r--src/core/hw/gpu.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 1503b45da..1a1ee90b2 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -430,9 +430,9 @@ inline void Write(u32 addr, const T data) {
430 // TODO: hwtest this 430 // TODO: hwtest this
431 if (config.GetStartAddress() != 0) { 431 if (config.GetStartAddress() != 0) {
432 if (!is_second_filler) { 432 if (!is_second_filler) {
433 GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PSC0); 433 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PSC0);
434 } else { 434 } else {
435 GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PSC1); 435 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PSC1);
436 } 436 }
437 } 437 }
438 438
@@ -473,7 +473,7 @@ inline void Write(u32 addr, const T data) {
473 } 473 }
474 474
475 g_regs.display_transfer_config.trigger = 0; 475 g_regs.display_transfer_config.trigger = 0;
476 GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PPF); 476 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PPF);
477 } 477 }
478 break; 478 break;
479 } 479 }
@@ -548,8 +548,8 @@ static void VBlankCallback(u64 userdata, int cycles_late) {
548 // screen, or if both use the same interrupts and these two instead determine the 548 // screen, or if both use the same interrupts and these two instead determine the
549 // beginning and end of the VBlank period. If needed, split the interrupt firing into 549 // beginning and end of the VBlank period. If needed, split the interrupt firing into
550 // two different intervals. 550 // two different intervals.
551 GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PDC0); 551 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PDC0);
552 GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PDC1); 552 Service::GSP::SignalInterrupt(Service::GSP::InterruptId::PDC1);
553 553
554 // Check for user input updates 554 // Check for user input updates
555 Service::HID::Update(); 555 Service::HID::Update();