summaryrefslogtreecommitdiff
path: root/textscreen/txt_gui.c
diff options
context:
space:
mode:
authorSimon Howard2015-04-04 21:29:33 -0400
committerSimon Howard2015-04-04 21:29:33 -0400
commit356554c22998264769a5c516697cbfbd43847ce4 (patch)
tree69e510a287f629685eaa543fbd2677dd165e628a /textscreen/txt_gui.c
parent535b4edd143ceeae870e9c13cdac65ce17e2be48 (diff)
downloadchocolate-doom-356554c22998264769a5c516697cbfbd43847ce4.tar.gz
chocolate-doom-356554c22998264769a5c516697cbfbd43847ce4.tar.bz2
chocolate-doom-356554c22998264769a5c516697cbfbd43847ce4.zip
textscreen: Add help URL functionality for windows.
This adds the ability to associate a URL with a window that gives some extra information about it and the configuration options found in it.
Diffstat (limited to 'textscreen/txt_gui.c')
-rw-r--r--textscreen/txt_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/textscreen/txt_gui.c b/textscreen/txt_gui.c
index 74e3ec75..bc7017a8 100644
--- a/textscreen/txt_gui.c
+++ b/textscreen/txt_gui.c
@@ -488,8 +488,8 @@ void TXT_InitClipArea(void)
cliparea = malloc(sizeof(txt_cliparea_t));
cliparea->x1 = 0;
cliparea->x2 = TXT_SCREEN_W;
- cliparea->y1 = 1;
- cliparea->y2 = TXT_SCREEN_H - 1;
+ cliparea->y1 = 0;
+ cliparea->y2 = TXT_SCREEN_H;
cliparea->next = NULL;
}
}