summaryrefslogtreecommitdiff
path: root/textscreen/txt_gui.c
diff options
context:
space:
mode:
authorSimon Howard2006-05-19 19:57:59 +0000
committerSimon Howard2006-05-19 19:57:59 +0000
commit344823214b77a076351e1101a89e8c2a407dca48 (patch)
tree30733845098175d38a41e485279e4147bd3850dd /textscreen/txt_gui.c
parentaaf96ab501f948df13f78fdf072379884d2d3f2e (diff)
downloadchocolate-doom-344823214b77a076351e1101a89e8c2a407dca48.tar.gz
chocolate-doom-344823214b77a076351e1101a89e8c2a407dca48.tar.bz2
chocolate-doom-344823214b77a076351e1101a89e8c2a407dca48.zip
Split off text mode gui desktop code into a separate file. Rename some
of the functions in txt_gui.c. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 483
Diffstat (limited to 'textscreen/txt_gui.c')
-rw-r--r--textscreen/txt_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/textscreen/txt_gui.c b/textscreen/txt_gui.c
index ee581fee..0b0c602d 100644
--- a/textscreen/txt_gui.c
+++ b/textscreen/txt_gui.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: txt_gui.c 291 2006-01-13 23:56:00Z fraggle $
+// $Id: txt_gui.c 483 2006-05-19 19:57:59Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -48,7 +48,7 @@ static int borders[4][4] =
{0xc0, 0xc4, 0xc1, 0xd9},
};
-void TXT_DrawDesktop(char *title)
+void TXT_DrawDesktopBackground(char *title)
{
int i;
unsigned char *screendata;
@@ -114,7 +114,7 @@ void TXT_DrawShadow(int x, int y, int w, int h)
}
}
-void TXT_DrawWindow(char *title, int x, int y, int w, int h)
+void TXT_DrawWindowFrame(char *title, int x, int y, int w, int h)
{
int x1, y1;
int bx, by;