hexen: Make MN_DrTextAYellow text parameter const
This commit is contained in:
parent
7209e8aba3
commit
79d1b19e61
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue