neteja tidy a source/core/system i audio amb fixes d'arrel

This commit is contained in:
2026-05-14 21:02:43 +02:00
parent dc622c7bae
commit 0ee117135c
11 changed files with 145 additions and 115 deletions
+3 -3
View File
@@ -46,7 +46,7 @@ class Instructions {
~Instructions();
Instructions(const Instructions &) = delete;
Instructions &operator=(const Instructions &) = delete;
auto operator=(const Instructions &) -> Instructions & = delete;
// Bucle principal
void run(mode_e mode);
@@ -64,8 +64,8 @@ class Instructions {
void checkEvents();
// Indica si las instrucciones han terminado
bool hasFinished() const;
[[nodiscard]] auto hasFinished() const -> bool;
// Indica si se ha solicitado salir de la aplicación
bool isQuitRequested() const;
[[nodiscard]] auto isQuitRequested() const -> bool;
};