Procházet zdrojové kódy

Bugfix: Fixing invalid character in the status bar

BearishSun před 7 roky
rodič
revize
072aef62de
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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()));
 	}