From 50dec8d9585f09994b92d027c3b0e5fe19d571af Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Tue, 3 Jul 2018 23:05:41 +0300 Subject: [PATCH] Fix the way quiet routines are being identified. Forgot to negate the value. --- source/Routine.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Routine.hpp b/source/Routine.hpp index 8a368bd2..8718a9d8 100644 --- a/source/Routine.hpp +++ b/source/Routine.hpp @@ -145,7 +145,7 @@ private: sq_pushobject(vm, mArgv[n].mObj); } // Make the function call and store the result - const SQRESULT res = sq_call(vm, mArgc + 1, false, mQuiet); + const SQRESULT res = sq_call(vm, mArgc + 1, false, !mQuiet); // Validate the result if (SQ_FAILED(res)) {