Login Page - Create Account

Support Board


Date/Time: Sat, 17 Jan 2026 23:02:36 +0000



Post From: ReplayStatus changes in v2865

[2026-01-17 18:27:39]
User719512 - Posts: 394
Noticed enum ReplayStatus was changed in v2865. I know the documentation usually lags the Sierra code/headers, but there is a possibility of an unintended side effect with introducing REPLAY_STATUS_UNSET.


int IsReplayRunning()
{
if(ReplayStatus != REPLAY_STOPPED)
return 1;

return 0;
}


It is unclear if/when REPLAY_STATUS_UNSET is set/used, but seems to me this would break IsReplayRunning().

I would like to think REPLAY_STATUS_UNSET is not needed since if the replay is not running or paused, then it must be in the stopped state.