summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar bunnei2015-07-16 18:08:46 -0400
committerGravatar bunnei2015-07-16 18:08:46 -0400
commit946f0ee2f4f5e150167ad90f86a425b50baec144 (patch)
tree47586aae7237dddc7278ef5e579cf82ad1b64e11 /src/core/hle
parentMerge pull request #931 from neobrain/move_default_attr_handler (diff)
parentLoader: Fix variable type and remove unused variable (diff)
downloadyuzu-946f0ee2f4f5e150167ad90f86a425b50baec144.tar.gz
yuzu-946f0ee2f4f5e150167ad90f86a425b50baec144.tar.xz
yuzu-946f0ee2f4f5e150167ad90f86a425b50baec144.zip
Merge pull request #918 from yuriks/romfs
Do not load entire RomFS to memory, read from the file as needed instead (rebased)
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/fs/archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp
index ba272f05f..6c0df67c3 100644
--- a/src/core/hle/service/fs/archive.cpp
+++ b/src/core/hle/service/fs/archive.cpp
@@ -116,7 +116,7 @@ ResultVal<bool> File::SyncRequest() {
116 u32 address = cmd_buff[6]; 116 u32 address = cmd_buff[6];
117 LOG_TRACE(Service_FS, "Write %s %s: offset=0x%llx length=%d address=0x%x, flush=0x%x", 117 LOG_TRACE(Service_FS, "Write %s %s: offset=0x%llx length=%d address=0x%x, flush=0x%x",
118 GetTypeName().c_str(), GetName().c_str(), offset, length, address, flush); 118 GetTypeName().c_str(), GetName().c_str(), offset, length, address, flush);
119 cmd_buff[2] = static_cast<u32>(backend->Write(offset, length, flush, Memory::GetPointer(address))); 119 cmd_buff[2] = static_cast<u32>(backend->Write(offset, length, flush != 0, Memory::GetPointer(address)));
120 break; 120 break;
121 } 121 }
122 122