mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
cfg: fix long/ulong serialization
This commit is contained in:
parent
df4456cfc0
commit
40da66df19
1 changed files with 12 additions and 12 deletions
|
@ -388,10 +388,10 @@ namespace cfg
|
|||
return
|
||||
{
|
||||
{"type", "int"},
|
||||
{"value", m_value.load()},
|
||||
{"default", def},
|
||||
{"min", min},
|
||||
{"man", max},
|
||||
{"value", to_string()},
|
||||
{"default", def_to_string()},
|
||||
{"min", std::to_string(min)},
|
||||
{"max", std::to_string(max)},
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -495,10 +495,10 @@ namespace cfg
|
|||
return
|
||||
{
|
||||
{"type", "float"},
|
||||
{"value", m_value.load()},
|
||||
{"default", def},
|
||||
{"min", min},
|
||||
{"man", max},
|
||||
{"value", to_string()},
|
||||
{"default", def_to_string()},
|
||||
{"min", std::to_string(min)},
|
||||
{"max", std::to_string(max)},
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -610,10 +610,10 @@ namespace cfg
|
|||
return
|
||||
{
|
||||
{"type", "uint"},
|
||||
{"value", m_value.load()},
|
||||
{"default", def},
|
||||
{"min", min},
|
||||
{"man", max},
|
||||
{"value", to_string()},
|
||||
{"default", def_to_string()},
|
||||
{"min", std::to_string(min)},
|
||||
{"max", std::to_string(max)},
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue