claude: mogut initBalloonFormations() a un fitxer extern

This commit is contained in:
2025-07-20 20:21:14 +02:00
parent f6228ae0c1
commit 228968c728
7 changed files with 620 additions and 321 deletions

View File

@@ -58,7 +58,7 @@ void Notifier::update() {
auto Notifier::shouldProcessNotification(int index) const -> bool {
// Si la notificación anterior está "saliendo", no hagas nada
return !(index > 0 && notifications_[index - 1].state == NotificationStatus::RISING);
return index <= 0 || notifications_[index - 1].state != NotificationStatus::RISING;
}
void Notifier::processNotification(int index) {