aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hw
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2014-07-22 23:26:28 -0400
committerGravatar bunnei <bunneidev@gmail.com>2014-08-05 23:58:00 -0400
commit4e9f305ed214ef0fbffd83042c86f41cd233ec3b (patch)
tree51787c34f01a244d28ee3b41bdbfc0b93c38bbff /src/core/hw
parent99e404e2218e16925dda44bcae21bfb8cf2caf91 (diff)
GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.
- Various other cleanups.
Diffstat (limited to 'src/core/hw')
-rw-r--r--src/core/hw/gpu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 41976d98..93b87147 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -256,7 +256,7 @@ void Update() {
// Synchronize line...
if ((current_ticks - g_last_ticks) >= GPU::kFrameTicks / 400) {
- GSP_GPU::SignalInterrupt(GSP_GPU::GXInterruptId::PDC0);
+ GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PDC0);
g_cur_line++;
g_last_ticks = current_ticks;
}
@@ -264,7 +264,7 @@ void Update() {
// Synchronize frame...
if (g_cur_line >= 400) {
g_cur_line = 0;
- GSP_GPU::SignalInterrupt(GSP_GPU::GXInterruptId::PDC1);
+ GSP_GPU::SignalInterrupt(GSP_GPU::InterruptId::PDC1);
VideoCore::g_renderer->SwapBuffers();
Kernel::WaitCurrentThread(WAITTYPE_VBLANK);
HLE::Reschedule(__func__);