├── .github └── workflows │ └── build.yml ├── .gitmodules ├── .hgignore ├── .hgtags ├── AUTHORS ├── COPYING ├── Dockerfile ├── Makefile.am ├── README.md ├── assets ├── banner.png ├── banner.xcf ├── hbasbadge-wiiu.png ├── icon.png └── icon.xcf ├── bootstrap ├── configure.ac ├── copy-pua.py ├── docker-build.sh ├── helper-app ├── AUTHORS ├── COPYING ├── Makefile.am ├── README.md ├── assets │ ├── icon.png │ └── icon.xcf ├── bootstrap ├── configure.ac ├── m4 │ ├── ax_add_am_macro.m4 │ ├── ax_am_macros.m4 │ ├── ax_append_compile_flags.m4 │ ├── ax_append_flag.m4 │ ├── ax_append_to_file.m4 │ ├── ax_check_compile_flag.m4 │ ├── ax_check_library.m4 │ ├── ax_file_escapes.m4 │ ├── ax_prepend_flag.m4 │ ├── ax_print_to_file.m4 │ ├── ax_require_defined.m4 │ ├── ax_var_push.m4 │ ├── devkitpro.m4 │ ├── devkitpro_ppc.m4 │ └── devkitpro_wut.m4 └── src │ ├── bps.cpp │ ├── bps.hpp │ ├── bps_spec.md │ ├── crc32.cpp │ ├── crc32.hpp │ ├── glue_stdio.cpp │ ├── main.cpp │ ├── mocha.cpp │ ├── mocha.hpp │ ├── whb.cpp │ └── whb.hpp ├── m4 ├── ax_add_am_macro.m4 ├── ax_am_macros.m4 ├── ax_append_compile_flags.m4 ├── ax_append_flag.m4 ├── ax_append_to_file.m4 ├── ax_check_compile_flag.m4 ├── ax_check_library.m4 ├── ax_file_escapes.m4 ├── ax_prepend_flag.m4 ├── ax_print_to_file.m4 ├── ax_require_defined.m4 ├── ax_subdirs_configure.m4 ├── ax_var_push.m4 ├── devkitpro.m4 ├── devkitpro_ppc.m4 ├── devkitpro_wut.m4 └── wiiu_wups.m4 ├── merge-fonts.py └── src └── main.cpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/.hgtags -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Daniel K. O. 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/assets/banner.xcf -------------------------------------------------------------------------------- /assets/hbasbadge-wiiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/assets/hbasbadge-wiiu.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/assets/icon.xcf -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/configure.ac -------------------------------------------------------------------------------- /copy-pua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/copy-pua.py -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/docker-build.sh -------------------------------------------------------------------------------- /helper-app/AUTHORS: -------------------------------------------------------------------------------- 1 | Daniel K. O. 2 | -------------------------------------------------------------------------------- /helper-app/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/COPYING -------------------------------------------------------------------------------- /helper-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/Makefile.am -------------------------------------------------------------------------------- /helper-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/README.md -------------------------------------------------------------------------------- /helper-app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/assets/icon.png -------------------------------------------------------------------------------- /helper-app/assets/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/assets/icon.xcf -------------------------------------------------------------------------------- /helper-app/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh -x 2 | exec autoreconf --install "$@" 3 | -------------------------------------------------------------------------------- /helper-app/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/configure.ac -------------------------------------------------------------------------------- /helper-app/m4/ax_add_am_macro.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_add_am_macro.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_am_macros.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_am_macros.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_append_compile_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_append_compile_flags.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_append_to_file.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_append_to_file.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_check_library.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_check_library.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_file_escapes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_file_escapes.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_prepend_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_prepend_flag.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_print_to_file.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_print_to_file.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /helper-app/m4/ax_var_push.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/ax_var_push.m4 -------------------------------------------------------------------------------- /helper-app/m4/devkitpro.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/devkitpro.m4 -------------------------------------------------------------------------------- /helper-app/m4/devkitpro_ppc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/devkitpro_ppc.m4 -------------------------------------------------------------------------------- /helper-app/m4/devkitpro_wut.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/m4/devkitpro_wut.m4 -------------------------------------------------------------------------------- /helper-app/src/bps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/bps.cpp -------------------------------------------------------------------------------- /helper-app/src/bps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/bps.hpp -------------------------------------------------------------------------------- /helper-app/src/bps_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/bps_spec.md -------------------------------------------------------------------------------- /helper-app/src/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/crc32.cpp -------------------------------------------------------------------------------- /helper-app/src/crc32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/crc32.hpp -------------------------------------------------------------------------------- /helper-app/src/glue_stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/glue_stdio.cpp -------------------------------------------------------------------------------- /helper-app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/main.cpp -------------------------------------------------------------------------------- /helper-app/src/mocha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/mocha.cpp -------------------------------------------------------------------------------- /helper-app/src/mocha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/mocha.hpp -------------------------------------------------------------------------------- /helper-app/src/whb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/whb.cpp -------------------------------------------------------------------------------- /helper-app/src/whb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/helper-app/src/whb.hpp -------------------------------------------------------------------------------- /m4/ax_add_am_macro.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_add_am_macro.m4 -------------------------------------------------------------------------------- /m4/ax_am_macros.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_am_macros.m4 -------------------------------------------------------------------------------- /m4/ax_append_compile_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_append_compile_flags.m4 -------------------------------------------------------------------------------- /m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /m4/ax_append_to_file.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_append_to_file.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_check_library.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_check_library.m4 -------------------------------------------------------------------------------- /m4/ax_file_escapes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_file_escapes.m4 -------------------------------------------------------------------------------- /m4/ax_prepend_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_prepend_flag.m4 -------------------------------------------------------------------------------- /m4/ax_print_to_file.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_print_to_file.m4 -------------------------------------------------------------------------------- /m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /m4/ax_subdirs_configure.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_subdirs_configure.m4 -------------------------------------------------------------------------------- /m4/ax_var_push.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/ax_var_push.m4 -------------------------------------------------------------------------------- /m4/devkitpro.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/devkitpro.m4 -------------------------------------------------------------------------------- /m4/devkitpro_ppc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/devkitpro_ppc.m4 -------------------------------------------------------------------------------- /m4/devkitpro_wut.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/devkitpro_wut.m4 -------------------------------------------------------------------------------- /m4/wiiu_wups.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/m4/wiiu_wups.m4 -------------------------------------------------------------------------------- /merge-fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/merge-fonts.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkosmari/System-Font-Replacer/HEAD/src/main.cpp --------------------------------------------------------------------------------