diff options
| author | 2015-12-06 15:07:59 -0500 | |
|---|---|---|
| committer | 2015-12-06 15:07:59 -0500 | |
| commit | 1ea0702eaa8bbafe4554ed777df61a28c44bae55 (patch) | |
| tree | f44065b364c04c8c20b57316f315ee7e476c6655 /src | |
| parent | arm_interface: directly initialize class members (diff) | |
| download | yuzu-1ea0702eaa8bbafe4554ed777df61a28c44bae55.tar.gz yuzu-1ea0702eaa8bbafe4554ed777df61a28c44bae55.tar.xz yuzu-1ea0702eaa8bbafe4554ed777df61a28c44bae55.zip | |
arm_interface: Make GetNumInstructions const
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/arm_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 39a103f7c..533067d4f 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -142,7 +142,7 @@ public: | |||
| 142 | virtual void PrepareReschedule() = 0; | 142 | virtual void PrepareReschedule() = 0; |
| 143 | 143 | ||
| 144 | /// Getter for num_instructions | 144 | /// Getter for num_instructions |
| 145 | u64 GetNumInstructions() { | 145 | u64 GetNumInstructions() const { |
| 146 | return num_instructions; | 146 | return num_instructions; |
| 147 | } | 147 | } |
| 148 | 148 | ||