]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ir.c
Cleanups
[xonotic/gmqcc.git] / ir.c
diff --git a/ir.c b/ir.c
index 4f53533887bdd0e73feef89352f7ece84bd39856..2d55ce0ea410213f31ba822e0f38c5320cb9c2e0 100644 (file)
--- a/ir.c
+++ b/ir.c
@@ -3709,16 +3709,11 @@ bool ir_builder_generate(ir_builder *self, const char *filename)
         memcpy(vec_add(lnofile, 5), ".lno", 5);
     }
 
-    if (!OPTS_OPTION_BOOL(OPTION_QUIET)) {
-        if (lnofile)
-            con_out("writing '%s' and '%s'...\n", filename, lnofile);
-        else
-            con_out("writing '%s'\n", filename);
-    }
     if (!code_write(self->code, filename, lnofile)) {
         vec_free(lnofile);
         return false;
     }
+
     vec_free(lnofile);
     return true;
 }