Make GetString return a char const *.

Make Intro a char const *.
This commit is contained in:
hispidence 2021-07-23 21:48:49 +01:00
parent ba48783bc3
commit 16b3511d5f
2 changed files with 12 additions and 12 deletions

View file

@ -192,7 +192,7 @@ bool GameFlow::LoadGameFlowScript()
return true;
}
char* GameFlow::GetString(const char* id)
char const * GameFlow::GetString(const char* id)
{
if (m_translationsMap.find(id) == m_translationsMap.end())
return "String not found";