ptm: Use boolean instead of integral value
The third parameter of Write is actually a bool type, not an int.
This commit is contained in:
parent
2d387d95a8
commit
934b8ffcf8
|
@ -137,7 +137,7 @@ void Init() {
|
||||||
Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode);
|
Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode);
|
||||||
if (gamecoin_result.Succeeded()) {
|
if (gamecoin_result.Succeeded()) {
|
||||||
auto gamecoin = gamecoin_result.MoveFrom();
|
auto gamecoin = gamecoin_result.MoveFrom();
|
||||||
gamecoin->backend->Write(0, sizeof(GameCoin), 1,
|
gamecoin->backend->Write(0, sizeof(GameCoin), true,
|
||||||
reinterpret_cast<const u8*>(&default_game_coin));
|
reinterpret_cast<const u8*>(&default_game_coin));
|
||||||
gamecoin->backend->Close();
|
gamecoin->backend->Close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue