diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/common_funcs.h | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index fde0f3a59..91b74c6bc 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h | |||
| @@ -15,8 +15,6 @@ | |||
| 15 | #define b32(x) (b16(x) | (b16(x) >>16) ) | 15 | #define b32(x) (b16(x) | (b16(x) >>16) ) |
| 16 | #define ROUND_UP_POW2(x) (b32(x - 1) + 1) | 16 | #define ROUND_UP_POW2(x) (b32(x - 1) + 1) |
| 17 | 17 | ||
| 18 | #define BIT(x) (1U << (x)) | ||
| 19 | |||
| 20 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) | 18 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) |
| 21 | 19 | ||
| 22 | /// Textually concatenates two tokens. The double-expansion is required by the C preprocessor. | 20 | /// Textually concatenates two tokens. The double-expansion is required by the C preprocessor. |
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index a444e22e5..26a9c2360 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp | |||
| @@ -62,8 +62,8 @@ void Process::ParseKernelCaps(const u32* kernel_caps, size_t len) { | |||
| 62 | AddressMapping mapping; | 62 | AddressMapping mapping; |
| 63 | mapping.address = descriptor << 12; | 63 | mapping.address = descriptor << 12; |
| 64 | mapping.size = (end_desc << 12) - mapping.address; | 64 | mapping.size = (end_desc << 12) - mapping.address; |
| 65 | mapping.writable = descriptor & BIT(20); | 65 | mapping.writable = descriptor & (1 << 20); |
| 66 | mapping.unk_flag = end_desc & BIT(20); | 66 | mapping.unk_flag = end_desc & (1 << 20); |
| 67 | 67 | ||
| 68 | address_mappings.push_back(mapping); | 68 | address_mappings.push_back(mapping); |
| 69 | } else if ((type & 0xFFF) == 0xFFE) { // 0x000F | 69 | } else if ((type & 0xFFF) == 0xFFE) { // 0x000F |