Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed May 10, 2024
1 parent 299462a commit ed93f17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/core/src/Core.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1122,15 +1122,15 @@ Core::process_timewarp()
TRACE_ENTRY();
if (last_process_time != 0)
{
int gap = current_time - 1 - last_process_time;
int64_t gap = current_time - 1 - last_process_time;

if (gap >= 30)
{
TRACE_MSG("Time warp of {} seconds. Powersae", gap);

force_idle();

int save_current_time = current_time;
int64_t save_current_time = current_time;

current_time = last_process_time + 1;
monitor_state = ACTIVITY_IDLE;
Expand Down

0 comments on commit ed93f17

Please sign in to comment.