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