mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix improperly resolved conflicts
This commit is contained in:
parent
5c5e6a26dd
commit
2794833f8d
2 changed files with 6 additions and 2 deletions
|
|
@ -1852,8 +1852,11 @@ static boolean CV_Command(void)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
CV_Set(v, COM_Argv(1));
|
if (!(v->flags & CV_SAVE) || CV_FilterVarByVersion(v, COM_Argv(1)))
|
||||||
v->changed = 1; // now it's been changed by (presumably) the user
|
{
|
||||||
|
CV_Set(v, COM_Argv(1));
|
||||||
|
v->changed = 1; // now it's been changed by (presumably) the user
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,7 @@
|
||||||
#include "d_main.h"
|
#include "d_main.h"
|
||||||
#include "m_argv.h"
|
#include "m_argv.h"
|
||||||
#include "i_system.h"
|
#include "i_system.h"
|
||||||
|
#include "command.h" // cv_execversion
|
||||||
|
|
||||||
#include "m_anigif.h"
|
#include "m_anigif.h"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue