diff options
author | Tony Wasserka <neobrainx@gmail.com> | 2014-11-18 16:55:58 +0100 |
---|---|---|
committer | Tony Wasserka <neobrainx@gmail.com> | 2014-11-18 16:55:58 +0100 |
commit | 219628d1c81701132f417f22aeb862be06abe72b (patch) | |
tree | c5132453f7954cc274b1707c69e8c2c0178c5513 /src | |
parent | Merge pull request #209 from lioncash/warn (diff) | |
parent | Fix documentation of parameters (diff) | |
download | yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.gz yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.bz2 yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.lz yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.xz yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.zst yuzu-219628d1c81701132f417f22aeb862be06abe72b.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/arm/dyncom/arm_dyncom.h | 2 | ||||
-rw-r--r-- | src/core/arm/interpreter/arm_interpreter.h | 2 | ||||
-rw-r--r-- | src/core/mem_map.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom.h b/src/core/arm/dyncom/arm_dyncom.h index 1f8cd3a3a..f3c70b7d3 100644 --- a/src/core/arm/dyncom/arm_dyncom.h +++ b/src/core/arm/dyncom/arm_dyncom.h @@ -19,7 +19,7 @@ public: /** * Set the Program Counter to an address - * @param addr Address to set PC to + * @param pc Address to set PC to */ void SetPC(u32 pc) override; diff --git a/src/core/arm/interpreter/arm_interpreter.h b/src/core/arm/interpreter/arm_interpreter.h index ceb1be438..f1e7198c5 100644 --- a/src/core/arm/interpreter/arm_interpreter.h +++ b/src/core/arm/interpreter/arm_interpreter.h @@ -18,7 +18,7 @@ public: /** * Set the Program Counter to an address - * @param addr Address to set PC to + * @param pc Address to set PC to */ void SetPC(u32 pc) override; diff --git a/src/core/mem_map.h b/src/core/mem_map.h index 87de5cd63..a58c59244 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h @@ -157,7 +157,7 @@ u8* GetPointer(VAddr virtual_address); * Maps a block of memory on the heap * @param size Size of block in bytes * @param operation Memory map operation type - * @param flags Memory allocation flags + * @param permissions Memory allocation permissions */ u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions); |