- make it compile again.

This commit is contained in:
Christoph Oelckers 2019-10-04 17:36:37 +02:00
parent 1ff8ea6a19
commit a86f1ffd4f
2 changed files with 2 additions and 2 deletions

View file

@ -140,10 +140,10 @@ void GAME_onshowosd(int shown)
// KB_KeyDown[sc_Pause] = 1;
}
void COMMON_doclearbackground(int numcols, int numrows);
void GAME_clearbackground(int numcols, int numrows)
{
void COMMON_doclearbackground(int numcols, int numrows);
int const i8n8 = OSD_SCALE(OSDCHAR_HEIGHT * numrows);
COMMON_doclearbackground(numcols, i8n8 + OSDCHAR_HEIGHT);
}

View file

@ -151,10 +151,10 @@ void GAME_onshowosd(int32_t shown)
// KB_KeyDown[sc_Pause] = 1;
}
void COMMON_doclearbackground(int numcols, int numrows);
void GAME_clearbackground(int numcols, int numrows)
{
void COMMON_doclearbackground(int numcols, int numrows);
int const i8n8 = OSD_SCALE(OSDCHAR_HEIGHT * numrows);
COMMON_doclearbackground(numcols, i8n8 + OSDCHAR_HEIGHT);
}