diff options
| -rw-r--r-- | src/core/hle/service/gsp_gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/gsp_gpu.cpp b/src/core/hle/service/gsp_gpu.cpp index 027b9fa92..359e41dd1 100644 --- a/src/core/hle/service/gsp_gpu.cpp +++ b/src/core/hle/service/gsp_gpu.cpp | |||
| @@ -227,7 +227,7 @@ void SignalInterrupt(InterruptId interrupt_id) { | |||
| 227 | // Update framebuffer information if requested | 227 | // Update framebuffer information if requested |
| 228 | // TODO(yuriks): Confirm where this code should be called. It is definitely updated without | 228 | // TODO(yuriks): Confirm where this code should be called. It is definitely updated without |
| 229 | // executing any GSP commands, only waiting on the event. | 229 | // executing any GSP commands, only waiting on the event. |
| 230 | int screen_id = (interrupt_id == InterruptId::PDC0) ? 0 : (interrupt_id == InterruptId::PDC0) ? 1 : -1; | 230 | int screen_id = (interrupt_id == InterruptId::PDC0) ? 0 : (interrupt_id == InterruptId::PDC1) ? 1 : -1; |
| 231 | if (screen_id != -1) { | 231 | if (screen_id != -1) { |
| 232 | FrameBufferUpdate* info = GetFrameBufferInfo(thread_id, screen_id); | 232 | FrameBufferUpdate* info = GetFrameBufferInfo(thread_id, screen_id); |
| 233 | if (info->is_dirty) { | 233 | if (info->is_dirty) { |