diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-28 03:14:00 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-28 03:41:24 +0200 |
commit | 62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c (patch) | |
tree | 1bf8109f6705b84fe6df01e6bf0f97f17f4f8452 /src/citra/config.h | |
parent | Remove some unnecessary inclusions of video_core.h (diff) | |
download | yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.tar yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.tar.gz yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.tar.bz2 yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.tar.lz yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.tar.xz yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.tar.zst yuzu-62f34c8e5ce94adeb24d985f8d2c32b1ece37a3c.zip |
Diffstat (limited to 'src/citra/config.h')
-rw-r--r-- | src/citra/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/citra/config.h b/src/citra/config.h index b1c31f59c..abc90f642 100644 --- a/src/citra/config.h +++ b/src/citra/config.h @@ -6,7 +6,8 @@ #include <memory> #include <string> -#include <inih/cpp/INIReader.h> + +class INIReader; class Config { std::unique_ptr<INIReader> sdl2_config; @@ -17,6 +18,7 @@ class Config { public: Config(); + ~Config(); void Reload(); }; |