mark other INTERFACE_CLASSIC codepaths

This commit is contained in:
Aaron Culliney 2015-01-10 09:45:53 -08:00
parent b031bdb4a6
commit a7cd281037
2 changed files with 8 additions and 0 deletions

View File

@ -45,8 +45,10 @@ uint8_t video__hires_odd[0x800];
uint8_t video__dhires1[256];
uint8_t video__dhires2[256];
#ifdef INTERFACE_CLASSIC
// Interface font
static uint8_t video__int_font[3][0x4000];
#endif
int video__current_page; // current visual page
int video__strictcolors = 1;// refactor : should be static
@ -472,6 +474,7 @@ void video_set(int flags) {
video_initialize_dhires_values();
}
#ifdef INTERFACE_CLASSIC
void video_loadfont_int(int first, int quantity, const uint8_t *data) {
unsigned int i = quantity * 8;
while (i--) {
@ -490,6 +493,7 @@ void video_loadfont_int(int first, int quantity, const uint8_t *data) {
}
}
}
#endif
// ----------------------------------------------------------------------------
// Plotting routines
@ -546,6 +550,7 @@ static inline void _plot_lores(uint8_t **d, const uint32_t val) {
*((uint16_t *)(*d)) = (uint16_t)(val & 0xffff);
}
#ifdef INTERFACE_CLASSIC
void video_plotchar( int x, int y, int scheme, uint8_t c ) {
uint8_t *d;
uint8_t *s;
@ -563,6 +568,7 @@ void video_plotchar( int x, int y, int scheme, uint8_t c ) {
_plot_char80(&d,&s);
_plot_char80(&d,&s);
}
#endif
void video_init(void) {

View File

@ -92,6 +92,7 @@ void video_redraw(void);
*/
void video_setpage(int page);
#ifdef INTERFACE_CLASSIC
/* Like loadfont, but writes to a seperate 256 character table used by
* video_plotchar and not the apple text-mode display.
*/
@ -108,6 +109,7 @@ void video_loadfont_int(int first, int qty, const uint8_t *data);
* 2 - Red text on Black background
*/
void video_plotchar(int row, int col, int color, uint8_t code);
#endif
/*
* Get a reference to current internal framebuffer