mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-26 17:46:14 +01:00
Only need do anything if cab existed
This commit is contained in:
parent
b01e4388ce
commit
8a126906f3
8
DCC.cpp
8
DCC.cpp
|
@ -576,9 +576,11 @@ void DCC::setLocoId(int id,ACK_CALLBACK callback) {
|
||||||
|
|
||||||
void DCC::forgetLoco(int cab) { // removes any speed reminders for this loco
|
void DCC::forgetLoco(int cab) { // removes any speed reminders for this loco
|
||||||
setThrottle2(cab,1); // ESTOP this loco if still on track
|
setThrottle2(cab,1); // ESTOP this loco if still on track
|
||||||
int reg=lookupSpeedTable(cab);
|
int reg=lookupSpeedTable(cab, false);
|
||||||
if (reg>=0) speedTable[reg].loco=0;
|
if (reg>=0) {
|
||||||
setThrottle2(cab,1); // ESTOP if this loco still on track
|
speedTable[reg].loco=0;
|
||||||
|
setThrottle2(cab,1); // ESTOP if this loco still on track
|
||||||
|
}
|
||||||
}
|
}
|
||||||
void DCC::forgetAllLocos() { // removes all speed reminders
|
void DCC::forgetAllLocos() { // removes all speed reminders
|
||||||
setThrottle2(0,1); // ESTOP all locos still on track
|
setThrottle2(0,1); // ESTOP all locos still on track
|
||||||
|
|
Loading…
Reference in New Issue
Block a user