mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-29 05:41:02 +00:00
For now, only use netreplays on the title if available
This commit is contained in:
parent
a2b5b76b98
commit
0d31981dc2
1 changed files with 3 additions and 2 deletions
|
@ -1024,14 +1024,15 @@ void F_TitleScreenTicker(boolean run)
|
||||||
// is it time?
|
// is it time?
|
||||||
if (!(--demoIdleLeft))
|
if (!(--demoIdleLeft))
|
||||||
{
|
{
|
||||||
static boolean use_netreplay = false;
|
//static boolean use_netreplay = false;
|
||||||
|
|
||||||
char dname[9];
|
char dname[9];
|
||||||
lumpnum_t l;
|
lumpnum_t l;
|
||||||
const char *mapname;
|
const char *mapname;
|
||||||
UINT8 numstaff;
|
UINT8 numstaff;
|
||||||
|
|
||||||
if ((use_netreplay = !use_netreplay))
|
//@TODO uncomment this when this goes into vanilla
|
||||||
|
/*if ((use_netreplay = !use_netreplay))*/
|
||||||
{
|
{
|
||||||
numstaff = 1;
|
numstaff = 1;
|
||||||
while ((l = W_CheckNumForName(va("TDEMO%03u", numstaff))) != LUMPERROR)
|
while ((l = W_CheckNumForName(va("TDEMO%03u", numstaff))) != LUMPERROR)
|
||||||
|
|
Loading…
Reference in a new issue