summaryrefslogtreecommitdiff
path: root/textscreen/txt_gui.h
diff options
context:
space:
mode:
authorSimon Howard2009-09-20 15:27:40 +0000
committerSimon Howard2009-09-20 15:27:40 +0000
commit42f7a9b8a27ae1192b49005f5be3eba32f740d05 (patch)
treec8e5898cefc9a4f8af061528ad0b755fbcdf4bb6 /textscreen/txt_gui.h
parent10da45b90cba29506c142982e76abc35c39d5d26 (diff)
downloadchocolate-doom-42f7a9b8a27ae1192b49005f5be3eba32f740d05.tar.gz
chocolate-doom-42f7a9b8a27ae1192b49005f5be3eba32f740d05.tar.bz2
chocolate-doom-42f7a9b8a27ae1192b49005f5be3eba32f740d05.zip
Use "const char" in libtextscreen where appropriate (thanks entryway).
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1679
Diffstat (limited to 'textscreen/txt_gui.h')
-rw-r--r--textscreen/txt_gui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/textscreen/txt_gui.h b/textscreen/txt_gui.h
index 3795c65a..ad7ae428 100644
--- a/textscreen/txt_gui.h
+++ b/textscreen/txt_gui.h
@@ -27,10 +27,10 @@
#ifndef TXT_GUI_H
#define TXT_GUI_H
-void TXT_DrawDesktopBackground(char *title);
-void TXT_DrawWindowFrame(char *title, int x, int y, int w, int h);
+void TXT_DrawDesktopBackground(const char *title);
+void TXT_DrawWindowFrame(const char *title, int x, int y, int w, int h);
void TXT_DrawSeparator(int x, int y, int w);
-void TXT_DrawString(char *s);
+void TXT_DrawString(const char *s);
void TXT_DrawHorizScrollbar(int x, int y, int w, int cursor, int range);
void TXT_DrawVertScrollbar(int x, int y, int h, int cursor, int range);