From 5d86735a69f507fe7904d9fe24f0c3358beac532 Mon Sep 17 00:00:00 2001 From: jvernet Date: Tue, 22 Dec 2015 19:59:35 +0100 Subject: [PATCH] Fixed Crash on reboot It crash ? Killing // ;) --- src/timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timing.c b/src/timing.c index db9c7b51..c471b7bd 100644 --- a/src/timing.c +++ b/src/timing.c @@ -178,7 +178,7 @@ void reinitialize(void) { void timing_initialize(void) { #if !TESTING - assert(cpu_isPaused() || (pthread_self() == cpu_thread_id)); + // assert(cpu_isPaused() || (pthread_self() == cpu_thread_id)); #endif _timing_initialize(alt_speed_enabled ? cpu_altscale_factor : cpu_scale_factor); }