mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Create config file if it doesn't exist.
This commit is contained in:
parent
813e753e3d
commit
d917cfa43f
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ namespace rpcs3
|
||||||
|
|
||||||
void config_t::load()
|
void config_t::load()
|
||||||
{
|
{
|
||||||
fs::file file(m_path);
|
fs::file file(m_path, fom::create | fom::read);
|
||||||
|
|
||||||
if (file)
|
if (file)
|
||||||
from_string((const std::string)file);
|
from_string((const std::string)file);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue