Fix scene group not being random

This commit is contained in:
WarmUpTill 2022-05-04 14:32:45 +02:00 committed by WarmUpTill
parent a0db023aae
commit 22a361f977

View File

@ -58,6 +58,7 @@ OBSWeakSource SceneGroup::getNextSceneRandom()
}
int rIdx = lastRandomScene;
std::srand(std::time(0));
do {
rIdx = rand() % scenes.size();
} while (rIdx == lastRandomScene);