1
0

Fix input

This commit is contained in:
otya128
2016-12-30 21:12:46 +09:00
parent ff19e614c4
commit 17b5ba0f49
2 changed files with 6 additions and 6 deletions

View File

@@ -1873,7 +1873,7 @@ class InputCode : Code
{
vm.petitcomputer.console.printString("?Redo from start \n");
}
wstring input = vm.petitcomputer.input("", false);
wstring input = vm.petitcomputer.input("", false, true);
wstring[] split = input.split(",");
error = false;
if(split.length == 0)
@@ -2558,6 +2558,6 @@ class Linput : Code
{
Value guide;
vm.pop(guide);
vm.push(Value(vm.petitcomputer.input(guide.castDString, false)));
vm.push(Value(vm.petitcomputer.input(guide.castDString, false, true)));
}
}