diff options
| author | 2014-11-18 08:31:24 -0500 | |
|---|---|---|
| committer | 2014-11-18 08:31:24 -0500 | |
| commit | 64cc6cb6cf1ee681cbbf7bd49d7fc2a685cdfb69 (patch) | |
| tree | 1f612041d6b58c0653e43bac498430867352d8f3 /src/core/arm | |
| parent | Merge pull request #200 from lioncash/statics (diff) | |
| download | yuzu-64cc6cb6cf1ee681cbbf7bd49d7fc2a685cdfb69.tar.gz yuzu-64cc6cb6cf1ee681cbbf7bd49d7fc2a685cdfb69.tar.xz yuzu-64cc6cb6cf1ee681cbbf7bd49d7fc2a685cdfb69.zip | |
Fix documentation of parameters
Diffstat (limited to 'src/core/arm')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom.h | 2 | ||||
| -rw-r--r-- | src/core/arm/interpreter/arm_interpreter.h | 2 |
2 files changed, 2 insertions, 2 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 | ||