miss inputs folder creation
Some checks failed
Build and Release / reuse (push) Has been cancelled
Build and Release / clang-format (push) Has been cancelled
Build and Release / get-info (push) Has been cancelled
Build and Release / windows-sdl (push) Has been cancelled
Build and Release / macos-sdl (push) Has been cancelled
Build and Release / linux-sdl (push) Has been cancelled
Build and Release / linux-sdl-gcc (push) Has been cancelled
Build and Release / pre-release (push) Has been cancelled

This commit is contained in:
georgemoralis 2026-02-17 22:01:03 +02:00
parent fb4ca27022
commit f73bdc5ee0

View File

@ -87,7 +87,7 @@ std::vector<User> UserManager::CreateDefaultUser() {
std::filesystem::create_directory(user_dir);
std::filesystem::create_directory(user_dir / "savedata");
std::filesystem::create_directory(user_dir / "trophy");
std::filesystem::create_directory(user_dir / "trophy/data");
std::filesystem::create_directory(user_dir / "inputs");
}
return {default_user};