mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Qt: fix savedata dialog exception
This commit is contained in:
parent
53a70c6e77
commit
5870dad639
1 changed files with 5 additions and 5 deletions
|
@ -65,11 +65,11 @@ namespace
|
||||||
}
|
}
|
||||||
|
|
||||||
SaveDataEntry save_entry2;
|
SaveDataEntry save_entry2;
|
||||||
save_entry2.dirName = ::at32(psf, "SAVEDATA_DIRECTORY").as_string();
|
save_entry2.dirName = psf::get_string(psf, "SAVEDATA_DIRECTORY");
|
||||||
save_entry2.listParam = ::at32(psf, "SAVEDATA_LIST_PARAM").as_string();
|
save_entry2.listParam = psf::get_string(psf, "SAVEDATA_LIST_PARAM");
|
||||||
save_entry2.title = ::at32(psf, "TITLE").as_string();
|
save_entry2.title = psf::get_string(psf, "TITLE");
|
||||||
save_entry2.subtitle = ::at32(psf, "SUB_TITLE").as_string();
|
save_entry2.subtitle = psf::get_string(psf, "SUB_TITLE");
|
||||||
save_entry2.details = ::at32(psf, "DETAIL").as_string();
|
save_entry2.details = psf::get_string(psf, "DETAIL");
|
||||||
|
|
||||||
save_entry2.size = 0;
|
save_entry2.size = 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue