mirror of https://github.com/OpenTTD/OpenTTD
(svn r1635) fix: forgot to set SetVScrollCount properly in autoreplace train GUI. It appears ok now
parent
ad6cc5a12d
commit
b4c4daf775
|
@ -381,9 +381,9 @@ static void SetupScrollStuffForReplaceWindow(Window *w)
|
||||||
const EngineInfo *info = &_engine_info[engine_id];
|
const EngineInfo *info = &_engine_info[engine_id];
|
||||||
|
|
||||||
if (ENGINE_AVAILABLE && RailVehInfo(engine_id)->power && e->railtype == railtype ) {
|
if (ENGINE_AVAILABLE && RailVehInfo(engine_id)->power && e->railtype == railtype ) {
|
||||||
count++;
|
|
||||||
if ( _player_num_engines[engine_id] ) {
|
if ( _player_num_engines[engine_id] ) {
|
||||||
if (sel[0]==0) selected_id[0] = engine_id;
|
if (sel[0]==0) selected_id[0] = engine_id;
|
||||||
|
count++;
|
||||||
sel[0]--;
|
sel[0]--;
|
||||||
}
|
}
|
||||||
if (HASBIT(e->player_avail, _local_player)) {
|
if (HASBIT(e->player_avail, _local_player)) {
|
||||||
|
|
Loading…
Reference in New Issue