mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +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
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue