mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-13 13:21:31 +00:00
Fix improperly resolved conflicts
This commit is contained in:
parent
ad01dcc5ac
commit
e528750444
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…
Reference in a new issue