From 86ba17847b79a67afc5bf52cc7fd1aaf5c38d379 Mon Sep 17 00:00:00 2001 From: Triang3l Date: Thu, 31 Dec 2020 16:46:25 +0300 Subject: [PATCH] [Base] Hopefully fix Clang template inheritance error --- src/xenia/base/cvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/base/cvar.h b/src/xenia/base/cvar.h index 3b2236642..6047b1bd8 100644 --- a/src/xenia/base/cvar.h +++ b/src/xenia/base/cvar.h @@ -257,7 +257,7 @@ void ConfigVar::SetGameConfigValue(T val) { } template void ConfigVar::ResetConfigValueToDefault() { - SetConfigValue(default_value_); + SetConfigValue(this->default_value_); } // CVars can be initialized before these, thus initialized on-demand using new.