mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- always save the entire config.
It is a major hassle if values cannot be looked up and then change when switching between branches etc.
This commit is contained in:
parent
568f01792f
commit
a5441061e9
1 changed files with 1 additions and 1 deletions
|
@ -2206,7 +2206,7 @@ void OSD_WriteCvars(buildvfs_FILE fp)
|
||||||
{
|
{
|
||||||
osdcvardata_t const &pData = *osd->cvars[i].pData;
|
osdcvardata_t const &pData = *osd->cvars[i].pData;
|
||||||
|
|
||||||
if (!(pData.flags & CVAR_NOSAVE) && OSD_CvarModified(&osd->cvars[i]))
|
if (!(pData.flags & CVAR_NOSAVE))
|
||||||
{
|
{
|
||||||
switch (pData.flags & CVAR_TYPEMASK)
|
switch (pData.flags & CVAR_TYPEMASK)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue