diff --git a/Source/help.cpp b/Source/help.cpp index 65043a7a3..513e2a3e3 100644 --- a/Source/help.cpp +++ b/Source/help.cpp @@ -100,6 +100,10 @@ std::vector HelpTextLines; void InitHelp() { + static bool Initialized = false; + if (Initialized) + return; + HelpFlag = false; char tempString[1024]; @@ -117,6 +121,8 @@ void InitHelp() previous = next + 1; } } + + Initialized = true; } void DrawHelp(const Surface &out)