Merge branch 'master' into v2.2

This commit is contained in:
Spacehuhn 2020-05-07 22:47:36 +02:00
commit 5827e1e65e
2 changed files with 15 additions and 2 deletions

12
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,12 @@
# These are supported funding model platforms
github: spacehuhn
patreon: spacehuhn
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: spacehuhn
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: ['paypal.me/spacechicken','tindie.com/stores/Spacehuhn/']

View File

@ -254,9 +254,10 @@ void Stations::deselect(int num) {
void Stations::remove(int num) {
if (!check(num)) return;
internal_remove(num);
prnt(ST_REMOVED_STATION);
prntln(num);
internal_remove(num);
changed = true;
}
@ -364,4 +365,4 @@ void Stations::internal_removeAll() {
free(getTime(i));
}
list->clear();
}
}