summaryrefslogtreecommitdiff
path: root/textscreen/txt_window.h
diff options
context:
space:
mode:
authorSimon Howard2006-09-21 16:25:10 +0000
committerSimon Howard2006-09-21 16:25:10 +0000
commit0cff90defcb069c351fd81bed9e57f3519c70ef7 (patch)
tree84efa052928e0f13e7851915fd2143f8ec014141 /textscreen/txt_window.h
parente903ecbffbc1a90f9206dbb49e6727e58889da3d (diff)
downloadchocolate-doom-0cff90defcb069c351fd81bed9e57f3519c70ef7.tar.gz
chocolate-doom-0cff90defcb069c351fd81bed9e57f3519c70ef7.tar.bz2
chocolate-doom-0cff90defcb069c351fd81bed9e57f3519c70ef7.zip
Fix some warnings in textscreen code.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 645
Diffstat (limited to 'textscreen/txt_window.h')
-rw-r--r--textscreen/txt_window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/textscreen/txt_window.h b/textscreen/txt_window.h
index 7aec10de..3659ed29 100644
--- a/textscreen/txt_window.h
+++ b/textscreen/txt_window.h
@@ -65,7 +65,7 @@ struct txt_window_s
// These are set automatically when the window is drawn
int window_x, window_y;
- int window_w, window_h;
+ unsigned int window_w, window_h;
};
txt_window_t *TXT_NewWindow(char *title);