runloop_data - use recording_data directly

This commit is contained in:
twinaphex 2016-12-05 02:29:37 +01:00
parent 94528ed28d
commit c76e92622d
1 changed files with 1 additions and 1 deletions

View File

@ -1183,7 +1183,7 @@ int runloop_iterate(unsigned *sleep_ms)
retro_time_t delta = current - runloop_frame_time_last; retro_time_t delta = current - runloop_frame_time_last;
bool is_locked_fps = (runloop_paused || bool is_locked_fps = (runloop_paused ||
input_driver_is_nonblock_state()) | input_driver_is_nonblock_state()) |
!!recording_driver_get_data_ptr(); !!recording_data;
if (!runloop_frame_time_last || is_locked_fps) if (!runloop_frame_time_last || is_locked_fps)