(svn r1808) Use strcmp() instead of home brewed function str_eq()
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user