Parcourir la source

Only unpause when actually paused

k4be il y a 1 an
Parent
commit
6c3b2c61b3
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      soft/main.c

+ 2 - 0
soft/main.c

@@ -272,6 +272,8 @@ void close_files(unsigned char flush_logs) {
 }
 
 static inline void auto_unpause(void) {
+	if (!System.tracking_auto_paused)
+		return;
 	System.tracking_auto_paused = 0;
 	beep(50, 4);
 }