|
|
| version 1.4, 2004/02/07 21:23:22 | version 1.5, 2005/02/07 14:46:10 |
|---|---|
| Line 5 | Line 5 |
| #include "fontdata.h" | #include "fontdata.h" |
| static void fm7ankcpy(BYTE *dst, const BYTE *src, int from, int to) { | static void fm7ankcpy(UINT8 *dst, const UINT8 *src, int from, int to) { |
| int y; | int y; |
| const BYTE *p; | const UINT8 *p; |
| int ank; | int ank; |
| for (ank=from; ank<to; ank++) { | for (ank=from; ank<to; ank++) { |
| Line 22 const BYTE *p; | Line 22 const BYTE *p; |
| } | } |
| } | } |
| static void fm7knjcpy(BYTE *dst, const BYTE *src, int from, int to) { | static void fm7knjcpy(UINT8 *dst, const UINT8 *src, int from, int to) { |
| int i, j, k; | int i, j, k; |
| const BYTE *p; | const UINT8 *p; |
| BYTE *q; | UINT8 *q; |
| for (i=from; i<to; i++) { | for (i=from; i<to; i++) { |
| q = dst + 0x21000 + (i << 4); | q = dst + 0x21000 + (i << 4); |
| Line 66 const BYTE *p; | Line 66 const BYTE *p; |
| } | } |
| } | } |
| BYTE fontfm7_read(const char *filename, BYTE loading) { | UINT8 fontfm7_read(const char *filename, UINT8 loading) { |
| FILEH fh; | FILEH fh; |
| BYTE *work; | UINT8 *work; |
| char fname[MAX_PATH]; | char fname[MAX_PATH]; |
| work = (BYTE *)_MALLOC(0x20000, "fm7font"); | work = (UINT8 *)_MALLOC(0x20000, "fm7font"); |
| if (work == NULL) { | if (work == NULL) { |
| goto frf7_err1; | goto frf7_err1; |
| } | } |