Commit 43f9296b authored by Steven Fuller's avatar Steven Fuller

few more consts

parent 14c715ef
......@@ -659,11 +659,11 @@ void ShowArticle(const char *article)
void HelpScreens()
{
int artnum;
char *text;
const char *text;
artnum = helpextern;
CA_CacheGrChunk(artnum);
text = (char *)grsegs[artnum];
text = (const char *)grsegs[artnum];
ShowArticle(text);
......@@ -680,13 +680,13 @@ void HelpScreens()
void EndText()
{
int artnum;
char *text;
const char *text;
ClearMemory();
artnum = endextern+gamestate.episode;
CA_CacheGrChunk(artnum);
text = (char *)grsegs[artnum];
text = (const char *)grsegs[artnum];
ShowArticle(text);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment