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
|
||||
*/
|
||||
SpriteID bridge_offset;
|
||||
uint8_t bridge_offset;
|
||||
|
||||
/**
|
||||
* Original railtype number to use when drawing non-newgrf railtypes, or when drawing stations.
|
||||
|
|
|
@ -584,12 +584,12 @@ struct ScenarioEditorLandscapeGenerationWindow : Window {
|
|||
break;
|
||||
|
||||
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;
|
||||
break;
|
||||
|
||||
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;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue