| 331 | /////////////////////////////////////////// |
| 332 | |
| 333 | bool32_t sk_step_end() { |
| 334 | local.app_system->profile_step_duration += stm_since(local.app_system->profile_frame_start); |
| 335 | local.app_system->profile_step_count += 1; |
| 336 | |
| 337 | systems_step_partial(system_run_from, local.app_system_idx+1); |
| 338 | |
| 339 | if (device_display_get_type() == display_type_flatscreen && local.focus != app_focus_active && !local.settings.disable_unfocused_sleep) |
| 340 | platform_sleep(100); |
| 341 | local.in_step = false; |
| 342 | return local.running; |
| 343 | } |
| 344 | |
| 345 | /////////////////////////////////////////// |
| 346 |
no test coverage detected