diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-11 11:37:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-11 11:37:32 -0400 |
commit | 143525dcb97b96a2e2046e6d0c6088a66a8885df (patch) | |
tree | 082e212263ed4b2409b2fe62faa4cd3b6a051e8d /src | |
parent | 3bac3051fc03846f5461628ba6a1b1f19851657c (diff) | |
parent | 46ba1bc40f110a52292290634eefd0c030677eea (diff) |
Merge pull request #1293 from lioncash/font
externals: Place font data within cpp files
Diffstat (limited to 'src')
-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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include <FontChineseSimplified.ttf.h> -#include <FontChineseTraditional.ttf.h> -#include <FontExtendedChineseSimplified.ttf.h> -#include <FontKorean.ttf.h> -#include <FontNintendoExtended.ttf.h> -#include <FontStandard.ttf.h> +#include <FontChineseSimplified.h> +#include <FontChineseTraditional.h> +#include <FontExtendedChineseSimplified.h> +#include <FontKorean.h> +#include <FontNintendoExtended.h> +#include <FontStandard.h> #include "common/common_paths.h" #include "common/file_util.h" |