Przeglądaj źródła

Update flow.cpp

Denis Muratshin 10 lat temu
rodzic
commit
913267de91
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/flow.cpp

+ 2 - 2
src/flow.cpp

@@ -56,7 +56,7 @@ namespace oxygine
         {
 			auto p = std::find(scenes.begin(), scenes.end(), scene);
 			if (p != scenes.end())			
-				log::error("you can't show scene '%s', it is already in the list", scene->getName());
+				log::error("you can't show scene '%s', it is already in the list", scene->getName().c_str());
 
 			OX_ASSERT(p == scenes.end());
             scene->_resultCB = cb;
@@ -252,4 +252,4 @@ namespace oxygine
             f->show(s, cb);
         }
     }
-}
+}