mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-19 21:08:15 -05:00
BitField: Make trivially copyable and remove assignment operator
This commit is contained in:
@ -110,8 +110,8 @@ void Init() {
|
||||
|
||||
FileSys::Path gamecoin_path("gamecoin.dat");
|
||||
FileSys::Mode open_mode = {};
|
||||
open_mode.write_flag = 1;
|
||||
open_mode.create_flag = 1;
|
||||
open_mode.write_flag.Assign(1);
|
||||
open_mode.create_flag.Assign(1);
|
||||
// Open the file and write the default gamecoin information
|
||||
auto gamecoin_result = Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode);
|
||||
if (gamecoin_result.Succeeded()) {
|
||||
|
Reference in New Issue
Block a user