diff --git a/Code/CryEngine/Cry3DEngine/cvars.cpp b/Code/CryEngine/Cry3DEngine/cvars.cpp index a34507e62e..e63c539a85 100644 --- a/Code/CryEngine/Cry3DEngine/cvars.cpp +++ b/Code/CryEngine/Cry3DEngine/cvars.cpp @@ -922,7 +922,7 @@ void CVars::Init() "Will not render CGFs past the given amount of drawcalls\n" "(<=0 off (default), >0 draw calls limit)"); - REGISTER_CVAR(e_CheckOctreeObjectsBoxSize, 1, VF_NULL, "CryWarning for crazy sized COctreeNode m_objectsBoxes"); + REGISTER_CVAR(e_CheckOctreeObjectsBoxSize, 1, VF_NULL, "Warning for crazy sized COctreeNode m_objectsBoxes"); REGISTER_CVAR(e_DebugGeomPrep, 0, VF_NULL, "enable logging of Geom preparation"); DefineConstIntCVar(e_GeomCaches, 1, VF_NULL, "Activates drawing of geometry caches"); REGISTER_CVAR(e_GeomCacheBufferSize, 128, VF_CHEAT, "Geometry cache stream buffer upper limit size in MB. Default: 128"); diff --git a/Code/CryEngine/CrySystem/AZCrySystemInitLogSink.cpp b/Code/CryEngine/CrySystem/AZCrySystemInitLogSink.cpp index ae8b1b1c09..857a9e993d 100644 --- a/Code/CryEngine/CrySystem/AZCrySystemInitLogSink.cpp +++ b/Code/CryEngine/CrySystem/AZCrySystemInitLogSink.cpp @@ -35,7 +35,7 @@ namespace AZ } AZ::OSString msgBoxMessage; - msgBoxMessage.append("CrySystem could not initialize correctly for the following reason(s):"); + msgBoxMessage.append("O3DE could not initialize correctly for the following reason(s):"); for (const AZ::OSString& errMsg : m_errorStringsCollected) { @@ -47,7 +47,7 @@ namespace AZ Trace::Output(nullptr, msgBoxMessage.c_str()); Trace::Output(nullptr, "\n==================================================================\n"); - EBUS_EVENT(AZ::NativeUI::NativeUIRequestBus, DisplayOkDialog, "CrySystem Initialization Failed", msgBoxMessage.c_str(), false); + EBUS_EVENT(AZ::NativeUI::NativeUIRequestBus, DisplayOkDialog, "O3DE Initialization Failed", msgBoxMessage.c_str(), false); } } // namespace Debug } // namespace AZ diff --git a/Code/CryEngine/CrySystem/SystemWin32.cpp b/Code/CryEngine/CrySystem/SystemWin32.cpp index a46f080106..974e578f38 100644 --- a/Code/CryEngine/CrySystem/SystemWin32.cpp +++ b/Code/CryEngine/CrySystem/SystemWin32.cpp @@ -605,7 +605,7 @@ void CSystem::DebugStats([[maybe_unused]] bool checkpoint, [[maybe_unused]] bool { if (!dbgmodules[i].handle) { - CryLogAlways("WARNING: CSystem::DebugStats: NULL handle for %s", dbgmodules[i].name.c_str()); + CryLogAlways("WARNING: CSystem::DebugStats: NULL handle for %s", dbgmodules[i].name.c_str()); nolib++; continue; } @@ -642,7 +642,7 @@ void CSystem::DebugStats([[maybe_unused]] bool checkpoint, [[maybe_unused]] bool } else { - CryLogAlways("WARNING: CSystem::DebugStats: could not retrieve function from DLL %s", dbgmodules[i].name.c_str()); + CryLogAlways("WARNING: CSystem::DebugStats: could not retrieve function from DLL %s", dbgmodules[i].name.c_str()); nolib++; }; #endif @@ -1066,7 +1066,7 @@ void CSystem::FatalError(const char* format, ...) if (szSysErrorMessage) { - CryLogAlways(" Last System Error: %s", szSysErrorMessage); + CryLogAlways("Last System Error: %s", szSysErrorMessage); } if (GetUserCallback()) diff --git a/Code/LauncherUnified/Launcher.cpp b/Code/LauncherUnified/Launcher.cpp index cd9d73421b..36d6a432f5 100644 --- a/Code/LauncherUnified/Launcher.cpp +++ b/Code/LauncherUnified/Launcher.cpp @@ -313,7 +313,7 @@ namespace O3DELauncher return "Failed to initialize the CrySystem Interface"; case ReturnCode::ErrCryEnvironment: - return "Failed to initialize the CryEngine global environment"; + return "Failed to initialize the global environment"; case ReturnCode::ErrAssetProccessor: return "Failed to connect to AssetProcessor while the /Amazon/AzCore/Bootstrap/wait_for_connect value is 1\n." diff --git a/Code/Sandbox/Editor/CryEdit.cpp b/Code/Sandbox/Editor/CryEdit.cpp index 6f311fe9ac..dff5b2267c 100644 --- a/Code/Sandbox/Editor/CryEdit.cpp +++ b/Code/Sandbox/Editor/CryEdit.cpp @@ -5702,7 +5702,7 @@ extern "C" int AZ_DLL_EXPORT CryEditMain(int argc, char* argv[]) int exitCode = 0; BOOL didCryEditStart = CCryEditApp::instance()->InitInstance(); - AZ_Error("Editor", didCryEditStart, "CryEditor did not initialize correctly, and will close." + AZ_Error("Editor", didCryEditStart, "O3DE Editor did not initialize correctly, and will close." "\nThis could be because of incorrectly configured components, or missing required gems." "\nSee other errors for more details."); diff --git a/Code/Sandbox/Editor/CryEditDoc.cpp b/Code/Sandbox/Editor/CryEditDoc.cpp index f446c50bd6..15269c1496 100644 --- a/Code/Sandbox/Editor/CryEditDoc.cpp +++ b/Code/Sandbox/Editor/CryEditDoc.cpp @@ -1931,7 +1931,7 @@ void CCryEditDoc::Fetch(const QString& holdName, const QString& relativeHoldPath if (!LoadXmlArchiveArray(arrXmlAr, holdFilename, holdPath)) { QMessageBox::critical(QApplication::activeWindow(), "Error", "The temporary 'Hold' level failed to load successfully. Your level might be corrupted, you should restart the Editor.", QMessageBox::Ok); - AZ_Error("CryEditDoc", false, "Fetch failed to load the Xml Archive"); + AZ_Error("EditDoc", false, "Fetch failed to load the Xml Archive"); return; }