From c699a7683e77f0ab75e3176943709e85be7c1eef Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 21 Oct 2014 00:26:53 +0200 Subject: [PATCH] (video_thread_wrapper.c) Rename thread_frame variable to thr_frame --- gfx/video_thread_wrapper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/video_thread_wrapper.c b/gfx/video_thread_wrapper.c index eeb9475e71..432189fbbe 100644 --- a/gfx/video_thread_wrapper.c +++ b/gfx/video_thread_wrapper.c @@ -395,8 +395,8 @@ static bool thread_frame(void *data, const void *frame_, return false; } - RARCH_PERFORMANCE_INIT(thread_frame); - RARCH_PERFORMANCE_START(thread_frame); + RARCH_PERFORMANCE_INIT(thr_frame); + RARCH_PERFORMANCE_START(thr_frame); unsigned copy_stride = width * (thr->info.rgb32 ? sizeof(uint32_t) : sizeof(uint16_t)); @@ -463,7 +463,7 @@ static bool thread_frame(void *data, const void *frame_, slock_unlock(thr->lock); - RARCH_PERFORMANCE_STOP(thread_frame); + RARCH_PERFORMANCE_STOP(thr_frame); thr->last_time = rarch_get_time_usec(); return true;