This commit is contained in:
ALEXks
2025-02-05 19:50:28 +03:00
parent 68c21c6955
commit fa12c4b672

View File

@@ -255,11 +255,6 @@ public:
} }
bool checkPause() { bool checkPause() {
FILE* f = fopen("pause", "w"); return Utils::Exists("pause");
if (f) {
fclose(f);
return true;
}
return false;
} }
}; };