summaryrefslogtreecommitdiff
path: root/src/core/memory.cpp
diff options
context:
space:
mode:
authorGravatar Gareth Poole2015-10-09 17:09:52 -0400
committerGravatar Gareth Poole2015-10-09 17:09:52 -0400
commitbe217bca7038fcca69e9e40fb481f0c7453b19fc (patch)
tree7a9692835a970c9da25acefb108fe6d5613aabaf /src/core/memory.cpp
parentMerge pull request #1189 from archshift/game-list-toggle-window (diff)
downloadyuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.gz
yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.tar.xz
yuzu-be217bca7038fcca69e9e40fb481f0c7453b19fc.zip
Fixed spelling errors
Diffstat (limited to 'src/core/memory.cpp')
-rw-r--r--src/core/memory.cpp4
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 {
26}; 26};
27 27
28/** 28/**
29 * A (reasonably) fast way of allowing switchable and remmapable process address spaces. It loosely 29 * A (reasonably) fast way of allowing switchable and remappable process address spaces. It loosely
30 * mimics the way a real CPU page table works, but instead is optimized for minimal decoding and 30 * mimics the way a real CPU page table works, but instead is optimized for minimal decoding and
31 * fetching requirements when acessing. In the usual case of an access to regular memory, it only 31 * fetching requirements when accessing. In the usual case of an access to regular memory, it only
32 * requires an indexed fetch and a check for NULL. 32 * requires an indexed fetch and a check for NULL.
33 */ 33 */
34struct PageTable { 34struct PageTable {