mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-25 05:20:15 +00:00
fixup! Make JitX64::CondManager::CurrentCond() const
This commit is contained in:
parent
cf24142769
commit
10786333b3
@ -140,7 +140,7 @@ void JitX64::CondManager::FlagsDirty() {
|
||||
flags_dirty = true;
|
||||
}
|
||||
|
||||
Cond JitX64::CondManager::CurrentCond() {
|
||||
Cond JitX64::CondManager::CurrentCond() const {
|
||||
return current_cond;
|
||||
}
|
||||
|
||||
|
@ -140,7 +140,7 @@ private:
|
||||
void CompileCond(Cond cond);
|
||||
void Always();
|
||||
void FlagsDirty();
|
||||
Cond CurrentCond();
|
||||
Cond CurrentCond() const;
|
||||
} cond_manager;
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user