diff --git a/plugins/GSdx/GSdx.h b/plugins/GSdx/GSdx.h index f0d5c7a50e..ae64d5617d 100644 --- a/plugins/GSdx/GSdx.h +++ b/plugins/GSdx/GSdx.h @@ -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 + T GetConfigT(const char* entry) { return static_cast(GetConfigI(entry)); } int GetConfigI(const char* entry); bool GetConfigB(const char* entry); string GetConfigS(const char* entry);