summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldr_ro/cro_helper.cpp
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-10-21 05:35:47 +0200
committerGitHub <noreply@github.com>2016-10-21 05:35:47 +0200
commit8b367777319b4fc14c7a9af6b91e07702cbb8742 (patch)
treefa2cf9ff34820635fcea6a48679547f40c58bd17 /src/core/hle/service/ldr_ro/cro_helper.cpp
parentMerge pull request #2024 from JamePeng/update-boss-code (diff)
parentFix typos (diff)
downloadyuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.tar
yuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.tar.gz
yuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.tar.bz2
yuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.tar.lz
yuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.tar.xz
yuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.tar.zst
yuzu-8b367777319b4fc14c7a9af6b91e07702cbb8742.zip
Diffstat (limited to 'src/core/hle/service/ldr_ro/cro_helper.cpp')
-rw-r--r--src/core/hle/service/ldr_ro/cro_helper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ldr_ro/cro_helper.cpp b/src/core/hle/service/ldr_ro/cro_helper.cpp
index b7d250312..4f0aa77eb 100644
--- a/src/core/hle/service/ldr_ro/cro_helper.cpp
+++ b/src/core/hle/service/ldr_ro/cro_helper.cpp
@@ -1227,7 +1227,7 @@ ResultCode CROHelper::Link(VAddr crs_address, bool link_on_load_bug_fix) {
// The bug itself is:
// If a relocation target is in .data segment, it will relocate to the
// user-specified buffer. But if this is linking during loading,
- // the .data segment hasn't been tranfer from CRO to the buffer,
+ // the .data segment hasn't been transfer from CRO to the buffer,
// thus the relocation will be overwritten by data transfer.
// To fix this bug, we need temporarily restore the old .data segment
// offset and apply imported symbols.