mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-19 06:49:38 +00:00
Correct typo in DataCacheOperation enum
Fixes a typo for the InvalidateByVAToPoC enum entry. Given yuzu is the only known user of 64-bit mode and it doesn't use this value, we can get away with changing this.
This commit is contained in:
@@ -14,7 +14,7 @@ static bool DataCacheInstruction(TranslatorVisitor& tv, IREmitter& ir, DataCache
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::DC_IVAC(Reg Rt) {
|
||||
return DataCacheInstruction(*this, ir, DataCacheOperation::InvaldiateByVAToPoC, Rt);
|
||||
return DataCacheInstruction(*this, ir, DataCacheOperation::InvalidateByVAToPoC, Rt);
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::DC_ISW(Reg Rt) {
|
||||
|
||||
Reference in New Issue
Block a user