Tweak memory command tip

This commit is contained in:
Wojtek Figat
2025-06-16 23:15:58 +02:00
parent 986693757c
commit bd2add7edd
2 changed files with 2 additions and 2 deletions

View File

@@ -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,

View File

@@ -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