Browse Source

gsp_gpu: Change 0 literal to nullptr

nce_cpp
Lioncash 10 years ago
parent
commit
2d0c3f789a
  1. 2
      src/core/hle/service/gsp_gpu.cpp

2
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 * @todo This probably does not belong in the GSP module, instead move to video_core
*/ */
void SignalInterrupt(InterruptId interrupt_id) { 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!"); LOG_WARNING(Service_GSP, "cannot synchronize until GSP event has been created!");
return; return;
} }

Loading…
Cancel
Save