diff options
author | Autechre | 2020-08-04 17:40:56 +0200 |
---|---|---|
committer | GitHub | 2020-08-04 17:40:56 +0200 |
commit | edfb913768c9ebd50a0ba810697e2ab7056bcc3e (patch) | |
tree | 7a12bf7b69f7f47fa3fed0d625530a3250d81be7 /libpcsxcore/sjisfont.h | |
parent | 31afa58d0576516307bb1f634bd23595d676f2f3 (diff) | |
parent | 908e426cc1ef2187357ed8fb59edd99b8a8060c9 (diff) | |
download | pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.tar.gz pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.tar.bz2 pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.zip |
Merge pull request #443 from negativeExponent/add-header-guards
Add header guards
Diffstat (limited to 'libpcsxcore/sjisfont.h')
-rw-r--r-- | libpcsxcore/sjisfont.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpcsxcore/sjisfont.h b/libpcsxcore/sjisfont.h index 105d624..0692648 100644 --- a/libpcsxcore/sjisfont.h +++ b/libpcsxcore/sjisfont.h @@ -21,6 +21,9 @@ // Converted to binary format by Wei Mingzhi <whistler_wmz@users.sf.net>. // +#ifndef __SJISFONT_H__ +#define __SJISFONT_H__ + const unsigned char font_8140[] = { 0x78, 0xda, 0xad, 0x3b, 0x3b, 0x90, 0x1b, 0xc9, 0x75, 0x3d, 0x9f, 0x05, 0x1a, 0xcb, 0xe1, 0x4e, @@ -6954,3 +6957,5 @@ const unsigned char font_889f[] = { 0xeb, 0xe7, 0xa8, 0x89, 0x0a, 0x11, 0xbc, 0xbc, 0x33, 0xf9, 0xff, 0xe8, 0xc4, 0x21, 0xbf }; + +#endif /* __SJISFONT_H__ */ |