aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-14 13:52:40 -0700
committerGitHub <noreply@github.com>2017-05-14 13:52:40 -0700
commit180587bb8bd18feeb81028007556276ef4ecaafd (patch)
tree5939bfa2c92ced9b30ade0b725ace7b7dce3d040 /src/core/hle/kernel/process.h
parent9bd3986540a990abc82ef2b03fc4d621d78c2e03 (diff)
parentf18d454eb6a6912b93664ee43b7f377a9ddd0215 (diff)
Merge pull request #2687 from yuriks/address-mappings
Kernel: Map special regions according to ExHeader
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index b566950b0..b52211d2a 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -20,7 +20,7 @@ struct AddressMapping {
// Address and size must be page-aligned
VAddr address;
u32 size;
- bool writable;
+ bool read_only;
bool unk_flag;
};