update readme

This commit is contained in:
2025-03-23 16:53:58 +01:00
parent 92b58c4b98
commit 1781b85332
5 changed files with 21 additions and 7 deletions

View File

@@ -12,7 +12,8 @@ void resetKeybindFile(int layout);
int main() {
std::srand(std::time(NULL));
// keep only for dev
#ifndef __JMINOS_RELEASE__
PiecesFiles pf;
for (int i = 1; i <= MAXIMUM_PIECES_SIZE; i++) {
if (!std::filesystem::exists("data/pieces/" + std::to_string(i) + "minos.bin")) {
@@ -29,8 +30,10 @@ int main() {
}
}
// before compiling release version
resetConfigFiles();
// uncomment before compiling release version
//resetConfigFiles();
#endif
GraphApp UI;
UI.run();