mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
DSPEmitter: Make FlagsNeeded() a const member function
This doesn't modify any class data.
This commit is contained in:
@ -90,7 +90,7 @@ void DSPEmitter::checkExceptions(u32 retval)
|
|||||||
SetJumpTarget(skipCheck);
|
SetJumpTarget(skipCheck);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DSPEmitter::FlagsNeeded()
|
bool DSPEmitter::FlagsNeeded() const
|
||||||
{
|
{
|
||||||
const u8 flags = DSPAnalyzer::GetCodeFlags(compilePC);
|
const u8 flags = DSPAnalyzer::GetCodeFlags(compilePC);
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ public:
|
|||||||
Block CompileStub();
|
Block CompileStub();
|
||||||
void Compile(u16 start_addr);
|
void Compile(u16 start_addr);
|
||||||
|
|
||||||
bool FlagsNeeded();
|
bool FlagsNeeded() const;
|
||||||
|
|
||||||
void FallBackToInterpreter(UDSPInstruction inst);
|
void FallBackToInterpreter(UDSPInstruction inst);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user