summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2014-11-18 16:55:58 +0100
committerGravatar Tony Wasserka2014-11-18 16:55:58 +0100
commit219628d1c81701132f417f22aeb862be06abe72b (patch)
treec5132453f7954cc274b1707c69e8c2c0178c5513 /src
parentMerge pull request #209 from lioncash/warn (diff)
parentFix documentation of parameters (diff)
downloadyuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.gz
yuzu-219628d1c81701132f417f22aeb862be06abe72b.tar.xz
yuzu-219628d1c81701132f417f22aeb862be06abe72b.zip
Merge pull request #207 from lioncash/docs
Fix documentation of parameters
Diffstat (limited to '')
-rw-r--r--src/core/arm/dyncom/arm_dyncom.h2
-rw-r--r--src/core/arm/interpreter/arm_interpreter.h2
-rw-r--r--src/core/mem_map.h2
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:
19 19
20 /** 20 /**
21 * Set the Program Counter to an address 21 * Set the Program Counter to an address
22 * @param addr Address to set PC to 22 * @param pc Address to set PC to
23 */ 23 */
24 void SetPC(u32 pc) override; 24 void SetPC(u32 pc) override;
25 25
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:
18 18
19 /** 19 /**
20 * Set the Program Counter to an address 20 * Set the Program Counter to an address
21 * @param addr Address to set PC to 21 * @param pc Address to set PC to
22 */ 22 */
23 void SetPC(u32 pc) override; 23 void SetPC(u32 pc) override;
24 24
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);
157 * Maps a block of memory on the heap 157 * Maps a block of memory on the heap
158 * @param size Size of block in bytes 158 * @param size Size of block in bytes
159 * @param operation Memory map operation type 159 * @param operation Memory map operation type
160 * @param flags Memory allocation flags 160 * @param permissions Memory allocation permissions
161 */ 161 */
162u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions); 162u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions);
163 163