Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

traceoff

From Quake Wiki

Revision as of 18:45, 31 July 2023 by Boondorl (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

void traceoff()

Usage[edit]

Stops printing the statements the VM is executing to the console. Paired with traceon() to start statement printing.

Example[edit]

// Verify which path the code is executing at a branch
traceon();
if (self.count == 3)
    PerformTask2();
else
    PerformTask();
traceoff();