diff options
| author | 2016-03-11 22:59:48 -0500 | |
|---|---|---|
| committer | 2016-03-11 22:59:48 -0500 | |
| commit | fba547b924c5a6dcf927e5a0ce2502012d05b72e (patch) | |
| tree | 8bc720401b266a88137cd4352c089f6e6e61f05b | |
| parent | Merge pull request #1476 from lioncash/emit (diff) | |
| download | yuzu-fba547b924c5a6dcf927e5a0ce2502012d05b72e.tar.gz yuzu-fba547b924c5a6dcf927e5a0ce2502012d05b72e.tar.xz yuzu-fba547b924c5a6dcf927e5a0ce2502012d05b72e.zip | |
gsp_gpu: Change 0 literal to nullptr
Diffstat (limited to '')
| -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 3d705821d..2ace2cade 100644 --- a/src/core/hle/service/gsp_gpu.cpp +++ b/src/core/hle/service/gsp_gpu.cpp | |||
| @@ -320,7 +320,7 @@ static void RegisterInterruptRelayQueue(Service::Interface* self) { | |||
| 320 | * @todo This probably does not belong in the GSP module, instead move to video_core | 320 | * @todo This probably does not belong in the GSP module, instead move to video_core |
| 321 | */ | 321 | */ |
| 322 | void SignalInterrupt(InterruptId interrupt_id) { | 322 | void SignalInterrupt(InterruptId interrupt_id) { |
| 323 | if (0 == g_interrupt_event) { | 323 | if (nullptr == g_interrupt_event) { |
| 324 | LOG_WARNING(Service_GSP, "cannot synchronize until GSP event has been created!"); | 324 | LOG_WARNING(Service_GSP, "cannot synchronize until GSP event has been created!"); |
| 325 | return; | 325 | return; |
| 326 | } | 326 | } |