(video_thread_wrapper.c) Rename thread_frame variable to thr_frame

This commit is contained in:
twinaphex 2014-10-21 00:26:53 +02:00
parent 2138a57efb
commit c699a7683e

View File

@ -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;