ff windaube veut toujours pas
All checks were successful
Linux arm64 / Build (push) Successful in 2m45s

This commit is contained in:
2025-06-12 17:35:39 +02:00
parent d7f52239f0
commit dd8314f76c
7 changed files with 26 additions and 23 deletions

View File

@@ -15,7 +15,7 @@ int main() {
PiecesFiles pf;
for (int i = 1; i <= MAXIMUM_PIECES_SIZE; i++) {
if (!std::filesystem::exists("data/pieces/" + std::to_string(i) + "minos.bin")) {
#ifdef NDEBUG
#ifndef DEBUG
std::cout << "IMPORTANT: You are currently in release mode, if you do not wish to generate big pieces (can take several minutes), type 'xmake f -m debug'." << std::endl;
#endif
@@ -23,7 +23,7 @@ int main() {
pf.savePieces(i);
}
}
#ifndef NDEBUG
#ifdef DEBUG
std::cout << "IMPORTANT: You are currently in debug mode, if you wish to use bigger pieces, type 'xmake f -m release'." << std::endl;
bool everythingGenerated = true;