summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-05-02 23:35:31 -0400
committerGitHub <noreply@github.com>2020-05-02 23:35:31 -0400
commitc49f51eaf18e76e17385f29215991cc113440ff0 (patch)
treeceb855311b9435d7812d60b50521da90f75462a3 /src
parent9acd336422a0d29d9ee80e93e5f323cfafa87faa (diff)
Update src/core/hle/service/am/am.cpp
Co-authored-by: Mat M. <mathew1800@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/am.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 276a3fc0c..9522f8c4b 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -1353,7 +1353,7 @@ void IApplicationFunctions::GetDisplayVersion(Kernel::HLERequestContext& ctx) {
const auto& version = res.first->GetVersionString();
std::copy(version.begin(), version.end(), version_string.begin());
} else {
- const u128 default_version = {1, 0};
+ constexpr u128 default_version = {1, 0};
std::memcpy(version_string.data(), default_version.data(), sizeof(u128));
}