hexen: Make MN_DrTextAYellow text parameter const

This commit is contained in:
Turo Lamminen 2018-08-07 18:30:15 +03:00
parent 7209e8aba3
commit 79d1b19e61
2 changed files with 2 additions and 2 deletions

View file

@ -1060,7 +1060,7 @@ boolean MN_Responder(event_t * event);
void MN_Ticker(void);
void MN_Drawer(void);
void MN_DrTextA(const char *text, int x, int y);
void MN_DrTextAYellow(char *text, int x, int y);
void MN_DrTextAYellow(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

@ -365,7 +365,7 @@ void MN_DrTextA(const char *text, int x, int y)
//
//==========================================================================
void MN_DrTextAYellow(char *text, int x, int y)
void MN_DrTextAYellow(const char *text, int x, int y)
{
char c;
patch_t *p;