aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Russell <ben@benru.co.uk>2020-04-23 13:10:06 +0100
committerGitHub <noreply@github.com>2020-04-23 13:10:06 +0100
commitbcd0444bb93e600c7d36c992802152de18c8c3aa (patch)
tree12eb76f638e86c9898fcaed297b64af383927f9e /src
parentdd43d725c619980bb07d3cae0410b15c51dbdfd7 (diff)
Update src/yuzu/main.cpp with missing const
Co-Authored-By: Mat M. <mathew1800@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 506f753072..b44b4276ca 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1304,7 +1304,7 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa
FileSys::VirtualFile romfs;
if (*romfs_title_id == program_id) {
- u64 ivfc_offset = loader->ReadRomFSIVFCOffset();
+ const u64 ivfc_offset = loader->ReadRomFSIVFCOffset();
FileSys::PatchManager pm{program_id};
romfs = pm.PatchRomFS(file, ivfc_offset, FileSys::ContentRecordType::Program);
} else {