diff options
author | Gareth Poole <510razor@gmail.com> | 2015-10-09 23:09:52 +0200 |
---|---|---|
committer | Gareth Poole <510razor@gmail.com> | 2015-10-09 23:09:52 +0200 |
commit | be217bca7038fcca69e9e40fb481f0c7453b19fc (patch) | |
tree | 7a9692835a970c9da25acefb108fe6d5613aabaf | |
parent | Merge pull request #1189 from archshift/game-list-toggle-window (diff) | |
download | yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.gz yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.bz2 yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.lz yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.xz yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.zst yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/memory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp index b80795e0c..fc79c3ee9 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -26,9 +26,9 @@ enum class PageType { }; /** - * A (reasonably) fast way of allowing switchable and remmapable process address spaces. It loosely + * A (reasonably) fast way of allowing switchable and remappable process address spaces. It loosely * mimics the way a real CPU page table works, but instead is optimized for minimal decoding and - * fetching requirements when acessing. In the usual case of an access to regular memory, it only + * fetching requirements when accessing. In the usual case of an access to regular memory, it only * requires an indexed fetch and a check for NULL. */ struct PageTable { |