|
|
| version 1.9, 2004/02/21 06:26:34 | version 1.10, 2004/02/21 20:48:52 |
|---|---|
| Line 321 const BYTE *src; | Line 321 const BYTE *src; |
| // ---- | // ---- |
| static REG8 putsub(LIOWORK lio, const LIOPUT *lput) { | static REG8 putsub(GLIO lio, const LIOPUT *lput) { |
| UINT addr; | UINT addr; |
| PUTCNTX pt; | PUTCNTX pt; |
| Line 455 static REG8 putsub(LIOWORK lio, const LI | Line 455 static REG8 putsub(LIOWORK lio, const LI |
| // ---- GGET | // ---- GGET |
| REG8 lio_gget(LIOWORK lio) { | REG8 lio_gget(GLIO lio) { |
| GGET dat; | GGET dat; |
| SINT32 x; | SINT32 x; |
| Line 539 REG8 lio_gget(LIOWORK lio) { | Line 539 REG8 lio_gget(LIOWORK lio) { |
| // ---- GPUT1 | // ---- GPUT1 |
| REG8 lio_gput1(LIOWORK lio) { | REG8 lio_gput1(GLIO lio) { |
| GPUT1 dat; | GPUT1 dat; |
| LIOPUT lput; | LIOPUT lput; |
| Line 567 REG8 lio_gput1(LIOWORK lio) { | Line 567 REG8 lio_gput1(LIOWORK lio) { |
| lput.bg = dat.bg; | lput.bg = dat.bg; |
| } | } |
| else { | else { |
| lput.fg = lio->mem.fgcolor; | lput.fg = lio->work.fgcolor; |
| lput.bg = lio->mem.bgcolor; | lput.bg = lio->work.bgcolor; |
| } | } |
| } | } |
| else { | else { |
| Line 589 REG8 lio_gput1(LIOWORK lio) { | Line 589 REG8 lio_gput1(LIOWORK lio) { |
| // ---- GPUT2 | // ---- GPUT2 |
| REG8 lio_gput2(LIOWORK lio) { | REG8 lio_gput2(GLIO lio) { |
| GPUT2 dat; | GPUT2 dat; |
| LIOPUT lput; | LIOPUT lput; |
| Line 621 REG8 lio_gput2(LIOWORK lio) { | Line 621 REG8 lio_gput2(LIOWORK lio) { |
| lput.bg = dat.bg; | lput.bg = dat.bg; |
| } | } |
| else { | else { |
| lput.fg = lio->mem.fgcolor; | lput.fg = lio->work.fgcolor; |
| lput.bg = lio->mem.bgcolor; | lput.bg = lio->work.bgcolor; |
| } | } |
| return(putsub(lio, &lput)); | return(putsub(lio, &lput)); |
| } | } |