heretic: Make MN_DrTextA text parameter const
This commit is contained in:
parent
475b0601c8
commit
61fe0bfe53
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue