NameList bugfig

This commit is contained in:
Stefan Kremser
2017-03-04 11:01:09 +01:00
parent 00ec81abd9
commit 2e5656cfba
2 changed files with 2 additions and 1 deletions

View File

@@ -66,6 +66,7 @@ String NameList::getName(int num){
for(int h=0;h<nameLength;h++){ for(int h=0;h<nameLength;h++){
if(names[num][h] != 0x00) returnStr += (char)names[num][h]; if(names[num][h] != 0x00) returnStr += (char)names[num][h];
} }
returnStr.trim();
return returnStr; return returnStr;
} }

File diff suppressed because one or more lines are too long