diff options
| -rw-r--r-- | vm.d | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -511,8 +511,8 @@ class VM { cnt--; } - foreach (Value val ; tmp) { - this.pushB(val); + for (int i = to!int(tmp.length) - 1; i >= 0; i--) { + this.pushB(tmp[i]); } //if (!callValue(peekA(argCount), argCount)) { // i'm allocating variables wrong |
