Skip to content

Commit

Permalink
fix: Missing reference
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Dec 28, 2023
1 parent 03dc26d commit 9685b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/builtin/source/content/file_extraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace hex::plugin::builtin {
}
};

for (const auto [extractFolder, alwaysExtract] : Paths) {
for (const auto &[extractFolder, alwaysExtract] : Paths) {
for (const auto &romfsPath : romfs::list(extractFolder)) {
for (const auto &imhexPath : fs::getDataPaths()) {
const auto path = imhexPath / std::fs::relative(romfsPath, extractFolder);
Expand Down

0 comments on commit 9685b39

Please sign in to comment.