diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 18:18:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 18:18:34 -0500 |
commit | ee08c39b7251c6a037014b503ecf70ebf8dc5ed5 (patch) | |
tree | 2ea9f31c0d1f5abc0360bfb952c16f659592e8c2 /src | |
parent | e2f06dbc17ae392f7a7f64b681639a259a215124 (diff) | |
parent | 10955d72ef2a19bf27b6e3bf19d21eeebb25cce8 (diff) |
Merge pull request #73 from N00byKing/3093
Implement Pull #3093 from citra: Added missing headers to CMakeLists.txt and fixed includes.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/core/file_sys/title_metadata.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 661545e965..e77261dc4f 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -89,6 +89,7 @@ set(HEADERS file_sys/ivfc_archive.h file_sys/path_parser.h file_sys/savedata_archive.h + file_sys/title_metadata.h frontend/emu_window.h frontend/framebuffer_layout.h frontend/input.h diff --git a/src/core/file_sys/title_metadata.h b/src/core/file_sys/title_metadata.h index 1fc157bf3f..a4c7d1089c 100644 --- a/src/core/file_sys/title_metadata.h +++ b/src/core/file_sys/title_metadata.h @@ -4,6 +4,7 @@ #pragma once +#include <array> #include <string> #include <vector> #include "common/common_types.h" |