diff options
| author | 2015-06-20 20:34:41 +0100 | |
|---|---|---|
| committer | 2015-06-28 00:36:53 +0100 | |
| commit | 79aa1b0808e8561560b58dab950ba4cd36e6aabb (patch) | |
| tree | 43199636ea7931eff5bc060d868737aeeb745b9d /src/citra/config.cpp | |
| parent | Common: Remove now-unused EMU_PLATFORM define, fixes issue #373. (diff) | |
| download | yuzu-79aa1b0808e8561560b58dab950ba4cd36e6aabb.tar.gz yuzu-79aa1b0808e8561560b58dab950ba4cd36e6aabb.tar.xz yuzu-79aa1b0808e8561560b58dab950ba4cd36e6aabb.zip | |
Citra: Fix the includes a bit, thanks to include-what-you-use.
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 1378567c1..506cb7939 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -2,7 +2,9 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #define GLFW_INCLUDE_NONE | ||
| 5 | #include <GLFW/glfw3.h> | 6 | #include <GLFW/glfw3.h> |
| 7 | #include <inih/cpp/INIReader.h> | ||
| 6 | 8 | ||
| 7 | #include "citra/default_ini.h" | 9 | #include "citra/default_ini.h" |
| 8 | 10 | ||
| @@ -10,7 +12,6 @@ | |||
| 10 | #include "common/logging/log.h" | 12 | #include "common/logging/log.h" |
| 11 | 13 | ||
| 12 | #include "core/settings.h" | 14 | #include "core/settings.h" |
| 13 | #include "core/core.h" | ||
| 14 | 15 | ||
| 15 | #include "config.h" | 16 | #include "config.h" |
| 16 | 17 | ||