mirror of https://github.com/PCSX2/pcsx2.git
gsdx: Add template version of GetConfig
It allows static_casts to be avoided for enum classes
This commit is contained in:
parent
85ddf69042
commit
439472d4f8
|
@ -58,6 +58,8 @@ public:
|
|||
void SetConfig(const char* entry, const char* value);
|
||||
void SetConfig(const char* entry, int value);
|
||||
// Avoid issue with overloading
|
||||
template<typename T>
|
||||
T GetConfigT(const char* entry) { return static_cast<T>(GetConfigI(entry)); }
|
||||
int GetConfigI(const char* entry);
|
||||
bool GetConfigB(const char* entry);
|
||||
string GetConfigS(const char* entry);
|
||||
|
|
Loading…
Reference in New Issue