(svn r1808) Use strcmp() instead of home brewed function str_eq()

This commit is contained in:
tron
2005-02-05 22:50:33 +00:00
parent 491063c9a1
commit 12183084b7
6 changed files with 6 additions and 15 deletions

View File

@@ -879,7 +879,7 @@ restart:
if (t2->xy != 0) {
SetDParam(0, t2->townnameparts);
GetString(buf2, t2->townnametype);
if (str_eq(buf1, buf2))
if (strcmp(buf1, buf2) == 0)
goto restart;
}
}