|
|
| version 1.11, 2004/06/03 16:20:52 | version 1.12, 2004/06/17 10:09:46 |
|---|---|
| Line 27 static void cgwindowset(CGROM cr) { | Line 27 static void cgwindowset(CGROM cr) { |
| cgwindow.writable |= 1; | cgwindow.writable |= 1; |
| high += cr->lr; | high += cr->lr; |
| } | } |
| else if ((code >= 0x08) && (code < 0x0c)) { | else if ((code >= 0x09) && (code < 0x0c)) { // ver0.78 |
| if (cr->lr) { | if (cr->lr) { |
| high = low; | high = low; |
| } | } |
| Line 115 const BYTE *ptr; | Line 115 const BYTE *ptr; |
| ptr = fontrom; | ptr = fontrom; |
| type = cr->code & 0x00ff; | type = cr->code & 0x00ff; |
| if ((type >= 0x09) && (type < 0x0c)) { // ver0.78 | if ((type >= 0x09) && (type < 0x0c)) { // ver0.78 |
| // if (cr->lr) { | if (!cr->lr) { |
| ptr += (cr->code & 0x7f7f) << 4; | ptr += (cr->code & 0x7f7f) << 4; |
| return(ptr[cr->line & 0x0f]); | return(ptr[cr->line & 0x0f]); |
| // } | } |
| } | } |
| else if (cr->code & 0xff00) { | else if (cr->code & 0xff00) { |
| ptr += (cr->code & 0x7f7f) << 4; | ptr += (cr->code & 0x7f7f) << 4; |