diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-11 17:37:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-11 17:37:32 +0200 |
commit | 143525dcb97b96a2e2046e6d0c6088a66a8885df (patch) | |
tree | 082e212263ed4b2409b2fe62faa4cd3b6a051e8d /src/core | |
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 yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.gz yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.bz2 yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.lz yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.xz yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.tar.zst yuzu-143525dcb97b96a2e2046e6d0c6088a66a8885df.zip |
Diffstat (limited to 'src/core')
-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" |