Explorar el Código

Fix mac build

rsredsq hace 10 años
padre
commit
cca698f783
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      Source/AtomicEditor/EditorMode/AEEditorMode.cpp

+ 2 - 1
Source/AtomicEditor/EditorMode/AEEditorMode.cpp

@@ -157,7 +157,8 @@ bool EditorMode::PlayProjectDebug()
 void EditorMode::HandleIPCPlayerExitRequest(StringHash eventType, VariantMap& eventData)
 {
     if (!playerBroker_) return;
-    playerBroker_->PostMessage(E_IPCPLAYERQUIT, VariantMap());
+    VariantMap noEventData;
+    playerBroker_->PostMessage(E_IPCPLAYERQUIT, noEventData);
 }
 
 bool EditorMode::IsPlayerEnabled()