mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 14:01:17 +12:00
Compatibility with fmtlib 10.1.x
This commit is contained in:
parent
ff9d180154
commit
757d458161
8 changed files with 39 additions and 38 deletions
|
@ -235,6 +235,12 @@ public:
|
|||
set(name, value.load());
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
void set(const char* name, const ConfigValue<T>& value)
|
||||
{
|
||||
set(name, value.GetValue());
|
||||
}
|
||||
|
||||
void set(const char* name, uint64 value)
|
||||
{
|
||||
set(name, (sint64)value);
|
||||
|
@ -462,4 +468,3 @@ public:
|
|||
private:
|
||||
T m_data;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue