Parcourir la source

Merge pull request #1063 from rcmaniac25/next

Fixed issue with luagen and pull #1052
Sean Paul Taylor il y a 12 ans
Parent
commit
fc916f4d09
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      gameplay/src/TextBox.cpp

+ 1 - 1
gameplay/src/TextBox.cpp

@@ -4,7 +4,7 @@
 namespace gameplay
 namespace gameplay
 {
 {
 
 
-bool space(char c) {
+static bool space(char c) {
     return isspace(c);
     return isspace(c);
 }
 }