summaryrefslogtreecommitdiff
path: root/textscreen/txt_desktop.c
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_desktop.c
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_desktop.c')
-rw-r--r--textscreen/txt_desktop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/textscreen/txt_desktop.c b/textscreen/txt_desktop.c
index 99a5062d..f833441f 100644
--- a/textscreen/txt_desktop.c
+++ b/textscreen/txt_desktop.c
@@ -61,7 +61,7 @@ void TXT_RemoveDesktopWindow(txt_window_t *win)
num_windows = to;
}
-static void DrawDesktopBackground(char *title)
+static void DrawDesktopBackground(const char *title)
{
int i;
unsigned char *screendata;
@@ -117,7 +117,7 @@ void TXT_SetDesktopTitle(char *title)
void TXT_DrawDesktop(void)
{
int i;
- char *title;
+ const char *title;
TXT_InitClipArea();