diff --git a/gfx/video_thread_wrapper.c b/gfx/video_thread_wrapper.c index 5ee30c2167..b8c658f5cb 100644 --- a/gfx/video_thread_wrapper.c +++ b/gfx/video_thread_wrapper.c @@ -36,7 +36,6 @@ static void *video_thread_init_never_call(const video_info_t *video, (void)video; (void)input; (void)input_data; - RARCH_ERR("Sanity check fail! Threaded mustn't be reinit.\n"); abort(); return NULL; } @@ -845,10 +844,6 @@ static void video_thread_free(void *data) scond_free(thr->cond_cmd); scond_free(thr->cond_thread); - RARCH_LOG( - "Threaded video stats: Frames pushed: %u, Frames dropped: %u.\n", - thr->hit_count, thr->miss_count); - free(thr); } }