0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

arm_interface: Make GetNumInstructions const

This commit is contained in:
Lioncash 2015-12-06 15:07:59 -05:00
parent de9a625c7e
commit 1ea0702eaa

View File

@ -142,7 +142,7 @@ public:
virtual void PrepareReschedule() = 0;
/// Getter for num_instructions
u64 GetNumInstructions() {
u64 GetNumInstructions() const {
return num_instructions;
}