(svn r2681) - Fix OS/2 port, please do not modify openttd.wpj/tgt by hand unless you know what you're doing!
This commit is contained in:
@@ -90,10 +90,9 @@ static void LandInfoWndProc(Window *w, WindowEvent *e)
|
||||
|
||||
// If the accepted value is less than 8, show it in 1/8:ths
|
||||
if (lid->ac[i] < 8) {
|
||||
int32 argv[2] = {
|
||||
lid->ac[i],
|
||||
_cargoc.names_s[i]
|
||||
};
|
||||
int32 argv[2];
|
||||
argv[0] = lid->ac[i];
|
||||
argv[1] = _cargoc.names_s[i];
|
||||
p = GetStringWithArgs(p, STR_01D1_8, argv);
|
||||
} else {
|
||||
p = GetString(p, _cargoc.names_s[i]);
|
||||
|
||||
Reference in New Issue
Block a user