浏览代码

Removing unneeded \n

Signed-off-by: mrieggeramzn <[email protected]>
mrieggeramzn 3 年之前
父节点
当前提交
9ed9ef998c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;