16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-17 23:39:18 +02:00

Merge pull request #113 from MaSzyna-EU07/refactor-nullptr

refactor: replace null with nullptr
This commit is contained in:
jerrrrycho
2026-06-29 13:40:06 +02:00
committed by GitHub
15 changed files with 118 additions and 168 deletions

View File

@@ -1091,7 +1091,7 @@ void eu07_application::init_files()
#ifdef _WIN32
DeleteFile("log.txt");
DeleteFile("errors.txt");
CreateDirectory("logs", NULL);
CreateDirectory("logs", nullptr);
#elif __unix__
unlink("log.txt");
unlink("errors.txt");