Browse Source

Removing unneeded \n

Signed-off-by: mrieggeramzn <[email protected]>
mrieggeramzn 3 years ago
parent
commit
9ed9ef998c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Gem/Code/Source/Platform/Windows/ScriptReporter_Windows.cpp

+ 1 - 1
Gem/Code/Source/Platform/Windows/ScriptReporter_Windows.cpp

@@ -19,7 +19,7 @@ namespace AtomSampleViewer
 
         const auto errorHandler = [path, traceLevel, &imageComparisonResult](const char* errorMessage)
         {
-            ReportScriptIssue(AZStd::string::format("Failed to load PNG file '%s' with error '%s'\n", path.c_str(), errorMessage),
+            ReportScriptIssue(AZStd::string::format("Failed to load PNG file '%s' with error '%s'", path.c_str(), errorMessage),
             traceLevel);
 
             imageComparisonResult.m_resultCode = ImageComparisonResult::ResultCode::FileNotLoaded;