diff options
author | bunnei <bunneidev@gmail.com> | 2017-08-29 03:09:42 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-09-30 20:28:53 +0200 |
commit | 3411883fe32786c08bbdb28fd35e0b39a420be41 (patch) | |
tree | 5d041dd65fcc20f2b8226f70b718a9c72e0bae5a /src/common | |
parent | elf: Check if machine is ARM. (diff) | |
download | yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.gz yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.bz2 yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.lz yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.xz yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.tar.zst yuzu-3411883fe32786c08bbdb28fd35e0b39a420be41.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/common_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h index ee18eac81..e8f7ac6be 100644 --- a/src/common/common_types.h +++ b/src/common/common_types.h @@ -47,8 +47,8 @@ typedef double f64; ///< 64-bit floating point // TODO: It would be nice to eventually replace these with strong types that prevent accidental // conversion between each other. -typedef u32 VAddr; ///< Represents a pointer in the userspace virtual address space. -typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space. +typedef u64 VAddr; ///< Represents a pointer in the userspace virtual address space. +typedef u64 PAddr; ///< Represents a pointer in the ARM11 physical address space. // An inheritable class to disallow the copy constructor and operator= functions class NonCopyable { |