Browse Source

Bugfix: Fixing invalid character in the status bar

BearishSun 7 years ago
parent
commit
072aef62de
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/EditorCore/GUI/BsGUIStatusBar.cpp

+ 1 - 1
Source/EditorCore/GUI/BsGUIStatusBar.cpp

@@ -105,7 +105,7 @@ namespace bs
 			content << name;
 
 		if (modified)
-			content << L"*";
+			content << "*";
 
 		mScene->setContent(HString(content.str()));
 	}