diff options
Diffstat (limited to 'backends/platform/psp')
| -rw-r--r-- | backends/platform/psp/osys_psp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/osys_psp.cpp b/backends/platform/psp/osys_psp.cpp index 38208718de..de7ec0631c 100644 --- a/backends/platform/psp/osys_psp.cpp +++ b/backends/platform/psp/osys_psp.cpp @@ -645,10 +645,10 @@ void OSystem_PSP::displayMessageOnOSD(const char *msg) { Common::SeekableReadStream *OSystem_PSP::createConfigReadStream() { Common::FSNode file(PSP_CONFIG_FILE); - return file.openForReading(); + return file.createReadStream(); } Common::WriteStream *OSystem_PSP::createConfigWriteStream() { Common::FSNode file(PSP_CONFIG_FILE); - return file.openForWriting(); + return file.createWriteStream(); } |
