diff options
author | F1F7Y <64418963+F1F7Y@users.noreply.github.com> | 2024-09-02 17:10:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 17:10:57 +0200 |
commit | 669fdaed4c00728e798ee911c4426a6339f93951 (patch) | |
tree | 47719b1fb865708225d580280604c4e38265c509 /primedev/core/convar/cvar.h | |
parent | 96c34f64ab4ed6099d08f458178e4686dff96b00 (diff) | |
download | NorthstarLauncher-669fdaed4c00728e798ee911c4426a6339f93951.tar.gz NorthstarLauncher-669fdaed4c00728e798ee911c4426a6339f93951.zip |
core: Remove use of `SourceInterface` for `CCvar` (#804)
`SourceInteface` class goes back to icepick and is not good. We have a replacement, let's use it.
Diffstat (limited to 'primedev/core/convar/cvar.h')
-rw-r--r-- | primedev/core/convar/cvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/primedev/core/convar/cvar.h b/primedev/core/convar/cvar.h index beaa84f4..024f2b87 100644 --- a/primedev/core/convar/cvar.h +++ b/primedev/core/convar/cvar.h @@ -34,5 +34,4 @@ public: std::unordered_map<std::string, ConCommandBase*> DumpToMap(); }; -extern SourceInterface<CCvar>* g_pCVarInterface; extern CCvar* g_pCVar; |