Explorar o código

Fix Jenkins compiler error (missing namespace)

Signed-off-by: Gene Walters <[email protected]>
Gene Walters %!s(int64=2) %!d(string=hai) anos
pai
achega
9ed9e4b489
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp

+ 3 - 3
Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp

@@ -303,16 +303,16 @@ namespace ImGui
 
                 // View Maps ( pending valid ILevelSystem )
                 auto lvlSystem = (gEnv && gEnv->pSystem) ? gEnv->pSystem->GetILevelSystem() : nullptr;
-                if (lvlSystem && LevelSystemLifecycleInterface::Get() && ImGui::BeginMenu("Levels"))
+                if (lvlSystem && AzFramework::LevelSystemLifecycleInterface::Get() && ImGui::BeginMenu("Levels"))
                 {
-                    if (LevelSystemLifecycleInterface::Get()->IsLevelLoaded())
+                    if (AzFramework::LevelSystemLifecycleInterface::Get()->IsLevelLoaded())
                     {
                         ImGui::TextColored(ImGui::Colors::s_PlainLabelColor, "Current Level: ");
                         ImGui::SameLine();
                         ImGui::TextColored(
                             ImGui::Colors::s_NiceLabelColor,
                             "%s",
-                            LevelSystemLifecycleInterface::Get()->GetCurrentLevelName());
+                            AzFramework::LevelSystemLifecycleInterface::Get()->GetCurrentLevelName());
                     }
 
                     bool usePrefabSystemForLevels = false;