(svn r3298) Remove unused and write-only variables

This commit is contained in:
tron
2005-12-14 06:28:48 +00:00
parent 23bfc03054
commit bf98086de8
10 changed files with 3 additions and 54 deletions

3
gfx.c
View File

@@ -484,7 +484,7 @@ void DrawStringMultiLine(int x, int y, StringID str, int maxw)
{
char buffer[512];
uint32 tmp;
int num, w, mt;
int num, mt;
const char *src;
byte c;
@@ -502,7 +502,6 @@ void DrawStringMultiLine(int x, int y, StringID str, int maxw)
src = buffer;
for(;;) {
w = GetStringWidth(src);
DoDrawString(src, x, y, 0xFE);
_stringwidth_base = _stringwidth_out;