Browse Source

do not print errors

Kajetan Johannes Hammerle 3 years ago
parent
commit
79cfcb9b9a
1 changed files with 0 additions and 3 deletions
  1. 0 3
      vm/Script.c

+ 0 - 3
vm/Script.c

@@ -646,9 +646,6 @@ void sRun(Script* sc) {
     while(sHasData(sc)) {
         sConsumeInstruction(sc);
         if(sc->error[0] != '\0') {
-            puts("error:");
-            printf(" - info: %s\n", sc->error);
-            printf(" - line: %d\n", sc->line);
             return;
         }
     }