summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-03-12 16:15:02 +0100
committerbunnei <bunneidev@gmail.com>2016-03-12 16:15:02 +0100
commitafb5140b53aa839442b751e60d8729576a63bce0 (patch)
tree248086bef60649382c2bef53843ebecd19469515 /src/core
parentMerge pull request #1499 from lioncash/services (diff)
parentgsp_gpu: Change 0 literal to nullptr (diff)
downloadyuzu-afb5140b53aa839442b751e60d8729576a63bce0.tar
yuzu-afb5140b53aa839442b751e60d8729576a63bce0.tar.gz
yuzu-afb5140b53aa839442b751e60d8729576a63bce0.tar.bz2
yuzu-afb5140b53aa839442b751e60d8729576a63bce0.tar.lz
yuzu-afb5140b53aa839442b751e60d8729576a63bce0.tar.xz
yuzu-afb5140b53aa839442b751e60d8729576a63bce0.tar.zst
yuzu-afb5140b53aa839442b751e60d8729576a63bce0.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/gsp_gpu.cpp2
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) {
* @todo This probably does not belong in the GSP module, instead move to video_core
*/
void SignalInterrupt(InterruptId interrupt_id) {
- if (0 == g_interrupt_event) {
+ if (nullptr == g_interrupt_event) {
LOG_WARNING(Service_GSP, "cannot synchronize until GSP event has been created!");
return;
}