diff options
Diffstat (limited to 'src/DSi_SD.cpp')
-rw-r--r-- | src/DSi_SD.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DSi_SD.cpp b/src/DSi_SD.cpp index f329437..59262cb 100644 --- a/src/DSi_SD.cpp +++ b/src/DSi_SD.cpp @@ -769,7 +769,7 @@ void DSi_SDHost::CheckSwapFIFO() #define MMC_DESC (Internal?"NAND":"SDcard") -DSi_MMCStorage::DSi_MMCStorage(DSi_SDHost* host, bool internal, std::string filename) +DSi_MMCStorage::DSi_MMCStorage(DSi_SDHost* host, bool internal, const std::string& filename) : DSi_SDDevice(host) { Internal = internal; @@ -780,7 +780,7 @@ DSi_MMCStorage::DSi_MMCStorage(DSi_SDHost* host, bool internal, std::string file ReadOnly = false; } -DSi_MMCStorage::DSi_MMCStorage(DSi_SDHost* host, bool internal, std::string filename, u64 size, bool readonly, std::string sourcedir) +DSi_MMCStorage::DSi_MMCStorage(DSi_SDHost* host, bool internal, const std::string& filename, u64 size, bool readonly, const std::string& sourcedir) : DSi_SDDevice(host) { Internal = internal; |