heretic: Make MN_DrTextA text parameter const

This commit is contained in:
Turo Lamminen 2018-04-24 19:58:02 +03:00
parent 475b0601c8
commit 61fe0bfe53
2 changed files with 2 additions and 2 deletions

View file

@ -818,7 +818,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);
int MN_TextAWidth(char *text);
void MN_DrTextB(char *text, int x, int y);
int MN_TextBWidth(char *text);

View file

@ -330,7 +330,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;