From a1f656b630fb0b43d447913b0be859f7abaf2c56 Mon Sep 17 00:00:00 2001 From: Stefan Arentz Date: Mon, 21 Nov 2016 22:43:35 -0500 Subject: [PATCH] Fixes #32 - Strict mode is always enabled --- cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu.c b/cpu.c index e438f6a..a8f0c98 100644 --- a/cpu.c +++ b/cpu.c @@ -325,7 +325,7 @@ void cpu_add_iom(struct cpu_t *cpu, uint16_t start, uint16_t length, void *obj, } void cpu_strict(struct cpu_t *cpu, bool strict) { - cpu->strict = true; + cpu->strict = strict; } int cpu_trace(struct cpu_t *cpu, char *path) {