chore: prevent generating playback data with ifdef

c2d676c
This commit is contained in:
Nikhil Narayana 2023-07-15 10:10:23 -07:00 committed by David Liu
commit 60a91ea062

View file

@ -66,8 +66,11 @@ SlippiPlaybackStatus::SlippiPlaybackStatus()
currentPlaybackFrame = INT_MIN;
targetFrameNum = INT_MAX;
lastFrame = Slippi::PLAYBACK_FIRST_SAVE;
#ifdef IS_PLAYBACK
// Only generate these if this is a playback configuration. Should this class get initialized at all?
generateDenylist();
generateLegacyCodelist();
#endif
}
void SlippiPlaybackStatus::startThreads()