X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fscreen.h;fp=src%2Fscreen.h;h=bc1e2ec53763e03899e7a92d3697b5a18aab10de;hb=1c26b00fe4ae49984de2d33f7d13c20760664dd9;hp=6ea06f4818bacc461dbaf2b2f90a0c10272ca9bc;hpb=5e16b2a6d9d5230b19fbc30d8c15fea65880b1d4;p=thunder diff --git a/src/screen.h b/src/screen.h index 6ea06f4..bc1e2ec 100644 --- a/src/screen.h +++ b/src/screen.h @@ -11,8 +11,15 @@ #include #include -void BlitChar(SDL_Surface *, uint8_t *, uint8_t *); +void BlitChar(uint8_t *, uint8_t *); +void CopySprites(void); void SavePCXSnapshot(void); +// Exported vars +extern uint32_t palette[256]; // Screen physical palette +extern uint8_t ccolor[256][8]; // Character color PROM values +extern uint8_t scolor[128][16]; // Sprite color PROM values +extern bool charBankSwitch; + #endif // __SCREEN_H__