forked from mirror/OpenTTD
(svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index)
This commit is contained in:
@@ -254,7 +254,7 @@ struct NewsWindow : Window {
|
||||
|
||||
case 0:
|
||||
if (this->ni->flags & NF_VEHICLE) {
|
||||
const Vehicle *v = GetVehicle(this->ni->data_a);
|
||||
const Vehicle *v = Vehicle::Get(this->ni->data_a);
|
||||
ScrollMainWindowTo(v->x_pos, v->y_pos, v->z_pos);
|
||||
} else if (this->ni->flags & NF_TILE) {
|
||||
if (_ctrl_pressed) {
|
||||
|
Reference in New Issue
Block a user