summaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorGravatar Morph2021-09-29 01:17:30 -0400
committerGravatar Morph2021-09-29 01:26:01 -0400
commite29f3b87f1921918dc62306d1de2d3ce4b4bf35b (patch)
treea6a48a725aab1b4c501beb131ccbd532ff37bdc3 /src/core/file_sys
parentMerge pull request #7018 from lat9nq/splat-stubs (diff)
downloadyuzu-e29f3b87f1921918dc62306d1de2d3ce4b4bf35b.tar.gz
yuzu-e29f3b87f1921918dc62306d1de2d3ce4b4bf35b.tar.xz
yuzu-e29f3b87f1921918dc62306d1de2d3ce4b4bf35b.zip
style: Remove extra space preceding the :: operator
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/program_metadata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/program_metadata.cpp b/src/core/file_sys/program_metadata.cpp
index 01ae1a567..35a53d36c 100644
--- a/src/core/file_sys/program_metadata.cpp
+++ b/src/core/file_sys/program_metadata.cpp
@@ -77,7 +77,7 @@ void ProgramMetadata::LoadManual(bool is_64_bit, ProgramAddressSpaceType address
77 aci_header.title_id = title_id; 77 aci_header.title_id = title_id;
78 aci_file_access.permissions = filesystem_permissions; 78 aci_file_access.permissions = filesystem_permissions;
79 npdm_header.system_resource_size = system_resource_size; 79 npdm_header.system_resource_size = system_resource_size;
80 aci_kernel_capabilities = std ::move(capabilities); 80 aci_kernel_capabilities = std::move(capabilities);
81} 81}
82 82
83bool ProgramMetadata::Is64BitProgram() const { 83bool ProgramMetadata::Is64BitProgram() const {