From bd2add7edd4b7ecf9ea5e1cce6987ce950ce07a2 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 16 Jun 2025 23:15:58 +0200 Subject: [PATCH] Tweak memory command tip --- Source/Editor/Windows/Profiler/Memory.cs | 2 +- Source/Engine/Profiler/ProfilerMemory.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Editor/Windows/Profiler/Memory.cs b/Source/Editor/Windows/Profiler/Memory.cs index 6958b828b..a74472a8c 100644 --- a/Source/Editor/Windows/Profiler/Memory.cs +++ b/Source/Editor/Windows/Profiler/Memory.cs @@ -71,7 +71,7 @@ namespace FlaxEditor.Windows.Profiler { _warningText = new Label { - Text = "Detailed memory profiling is disabled. Run with command line: -mem", + Text = "Detailed memory profiling is disabled. Run with command line '-mem'", TextColor = Color.Red, Visible = false, Parent = layout, diff --git a/Source/Engine/Profiler/ProfilerMemory.cpp b/Source/Engine/Profiler/ProfilerMemory.cpp index d53e48b17..c936ff5b2 100644 --- a/Source/Engine/Profiler/ProfilerMemory.cpp +++ b/Source/Engine/Profiler/ProfilerMemory.cpp @@ -160,7 +160,7 @@ namespace // Warn that data might be missing due to inactive profiler if (!ProfilerMemory::Enabled) - output.AppendLine(TEXT("Detailed memory profiling is disabled. Run with command line: -mem")); + output.AppendLine(TEXT("Detailed memory profiling is disabled. Run with command line '-mem'")); } #ifdef USE_TRACY_MEMORY_PLOTS