diff options
author | Simon Howard | 2009-07-20 22:27:59 +0000 |
---|---|---|
committer | Simon Howard | 2009-07-20 22:27:59 +0000 |
commit | 1715116ef17946f1c77fb2da220384e7889f1329 (patch) | |
tree | f5c2807ab3cd7b9a1f7b61cd124ef6e48c09451f /textscreen | |
parent | f1596273a3e991448ca7e04415a74f916b2c9810 (diff) | |
download | chocolate-doom-1715116ef17946f1c77fb2da220384e7889f1329.tar.gz chocolate-doom-1715116ef17946f1c77fb2da220384e7889f1329.tar.bz2 chocolate-doom-1715116ef17946f1c77fb2da220384e7889f1329.zip |
Remove redundant variable assignment (thanks Quasar/Yagisan)
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1630
Diffstat (limited to 'textscreen')
-rw-r--r-- | textscreen/txt_gui.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/textscreen/txt_gui.c b/textscreen/txt_gui.c index e7f0472e..276176ec 100644 --- a/textscreen/txt_gui.c +++ b/textscreen/txt_gui.c @@ -234,7 +234,6 @@ void TXT_DrawString(char *s) if (VALID_Y(y)) { - p = s; x1 = x; for (p = s; *p != '\0'; ++p) |