gsp_gpu: Change 0 literal to nullptr

This commit is contained in:
Lioncash 2016-03-11 22:59:48 -05:00
parent 3789de6bd9
commit fba547b924

View file

@ -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;
}