From 53b115b81e626d563afb62939ac192f56974817b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 29 May 2019 06:14:40 -0400 Subject: [PATCH] VideoCommon/NetPlayChatUI: Use nullptr where applicable We gotsa type dedicated to this concept already :P --- Source/Core/VideoCommon/NetPlayChatUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/NetPlayChatUI.cpp b/Source/Core/VideoCommon/NetPlayChatUI.cpp index 6c8bce9227..7428233286 100644 --- a/Source/Core/VideoCommon/NetPlayChatUI.cpp +++ b/Source/Core/VideoCommon/NetPlayChatUI.cpp @@ -106,7 +106,7 @@ void NetPlayChatUI::SendMessage() void NetPlayChatUI::Activate() { if (ImGui::IsItemFocused()) - ImGui::SetWindowFocus(NULL); + ImGui::SetWindowFocus(nullptr); else m_activate = true; }