Fix minor tiny little typo

This commit is contained in:
iProgramInCpp 2021-01-07 11:03:37 -08:00 committed by GitHub
parent 659ab34aee
commit b8222e4ece
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -636,7 +636,7 @@ begin_deleting_shit:
for (uint32_t i = 0; i < enemies.size(); i++) {
if (enemies.at(i)->markForRemoval) {
// here we have the mark for removal shit, remove
// and restart the loop (not most efficient but it will do!
// and restart the loop (not most efficient but it will do!)
enemies.erase(enemies.begin() + i);
goto begin_deleting_shit;
}
@ -1424,4 +1424,4 @@ void Title::Init() {
}
void Title::LoadContent() {
}
}