Fixes most commands.

This commit is contained in:
hondacrx
2022-06-11 21:09:48 -04:00
parent 130444d893
commit e0025794a5
31 changed files with 1275 additions and 928 deletions
+1 -1
View File
@@ -236,7 +236,7 @@ namespace Framework.IO
public bool IsAtEnd()
{
return activeposition == activestring.Length;
return activestring.IsEmpty() || activeposition == activestring.Length;
}
public int GetCurrentPosition()