diff options
| author | 2018-09-11 11:37:32 -0400 | |
|---|---|---|
| committer | 2018-09-11 11:37:32 -0400 | |
| commit | 143525dcb97b96a2e2046e6d0c6088a66a8885df (patch) | |
| tree | 082e212263ed4b2409b2fe62faa4cd3b6a051e8d /src | |
| parent | Use open-source shared fonts if no dumped file is available (#1269) (diff) | |
| parent | externals: Place font data within cpp files (diff) | |
| download | yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.gz yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.xz yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.zip | |
Merge pull request #1293 from lioncash/font
externals: Place font data within cpp files
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/ns/pl_u.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/ns/pl_u.cpp b/src/core/hle/service/ns/pl_u.cpp index 77f635ae2..7abb4cf00 100644 --- a/src/core/hle/service/ns/pl_u.cpp +++ b/src/core/hle/service/ns/pl_u.cpp | |||
| @@ -2,12 +2,12 @@ | |||
| 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 | #include <FontChineseSimplified.ttf.h> | 5 | #include <FontChineseSimplified.h> |
| 6 | #include <FontChineseTraditional.ttf.h> | 6 | #include <FontChineseTraditional.h> |
| 7 | #include <FontExtendedChineseSimplified.ttf.h> | 7 | #include <FontExtendedChineseSimplified.h> |
| 8 | #include <FontKorean.ttf.h> | 8 | #include <FontKorean.h> |
| 9 | #include <FontNintendoExtended.ttf.h> | 9 | #include <FontNintendoExtended.h> |
| 10 | #include <FontStandard.ttf.h> | 10 | #include <FontStandard.h> |
| 11 | 11 | ||
| 12 | #include "common/common_paths.h" | 12 | #include "common/common_paths.h" |
| 13 | #include "common/file_util.h" | 13 | #include "common/file_util.h" |