mirror of https://github.com/OpenTTD/OpenTTD
Compare commits
3 Commits
37441003a0
...
a11cacb93c
Author | SHA1 | Date |
---|---|---|
|
a11cacb93c | |
|
c69fc76395 | |
|
6acccb9044 |
|
@ -184,7 +184,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* Bridge offset
|
* Bridge offset
|
||||||
*/
|
*/
|
||||||
SpriteID bridge_offset;
|
uint8_t bridge_offset;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Original railtype number to use when drawing non-newgrf railtypes, or when drawing stations.
|
* Original railtype number to use when drawing non-newgrf railtypes, or when drawing stations.
|
||||||
|
|
|
@ -584,12 +584,12 @@ struct ScenarioEditorLandscapeGenerationWindow : Window {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case WID_ETT_LOWER_LAND: // Lower land button
|
case WID_ETT_LOWER_LAND: // Lower land button
|
||||||
HandlePlacePushButton(this, WID_ETT_LOWER_LAND, ANIMCURSOR_LOWERLAND, HT_POINT);
|
HandlePlacePushButton(this, WID_ETT_LOWER_LAND, ANIMCURSOR_LOWERLAND, HT_POINT | HT_DIAGONAL);
|
||||||
this->last_user_action = widget;
|
this->last_user_action = widget;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case WID_ETT_RAISE_LAND: // Raise land button
|
case WID_ETT_RAISE_LAND: // Raise land button
|
||||||
HandlePlacePushButton(this, WID_ETT_RAISE_LAND, ANIMCURSOR_RAISELAND, HT_POINT);
|
HandlePlacePushButton(this, WID_ETT_RAISE_LAND, ANIMCURSOR_RAISELAND, HT_POINT | HT_DIAGONAL);
|
||||||
this->last_user_action = widget;
|
this->last_user_action = widget;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue