hexen: Make MN_DrTextA text parameter const
This commit is contained in:
parent
062e8870ff
commit
7209e8aba3
2 changed files with 2 additions and 2 deletions
|
|
@ -1059,7 +1059,7 @@ void MN_DeactivateMenu(void);
|
|||
boolean MN_Responder(event_t * event);
|
||||
void MN_Ticker(void);
|
||||
void MN_Drawer(void);
|
||||
void MN_DrTextA(char *text, int x, int y);
|
||||
void MN_DrTextA(const char *text, int x, int y);
|
||||
void MN_DrTextAYellow(char *text, int x, int y);
|
||||
int MN_TextAWidth(char *text);
|
||||
void MN_DrTextB(char *text, int x, int y);
|
||||
|
|
|
|||
|
|
@ -339,7 +339,7 @@ static void InitFonts(void)
|
|||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
void MN_DrTextA(char *text, int x, int y)
|
||||
void MN_DrTextA(const char *text, int x, int y)
|
||||
{
|
||||
char c;
|
||||
patch_t *p;
|
||||
|
|
|
|||
Loading…
Reference in a new issue