diff options
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/launcher.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index e689838ce7..5bb358452a 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -90,7 +90,7 @@ public:  protected:  	bool tryInsertChar(byte c, int pos) { -		if (isalnum(c) || c == '-' || c == '_') { +		if (Common::isAlnum(c) || c == '-' || c == '_') {  			_editString.insertChar(c, pos);  			return true;  		}  | 
