Use generic resync message for RNG desyncs

This commit is contained in:
fickleheart 2019-02-18 20:51:02 -06:00
parent 0b92743244
commit 97a663745a

View file

@ -4940,7 +4940,10 @@ void G_ReadDemoExtraData(void)
if (P_GetRandSeed() != rng)
{
P_SetRandSeed(rng);
CONS_Alert(CONS_WARNING, "Random seed has desynced!\n");
if (demosynced)
CONS_Alert(CONS_WARNING, M_GetText("Demo playback has desynced!\n"));
demosynced = false;
}
}