Don't force inline

This commit is contained in:
CocoSimone
2023-08-11 12:27:24 +02:00
parent fbc6abf5e8
commit a5bbd2dc9a

View File

@@ -226,7 +226,7 @@ void Cop1::cvtld(Registers& regs, u32 instr) {
}
template <typename T>
FORCE_INLINE bool CalculateCondition(Registers& regs, T fs, T ft, CompConds cond) {
inline bool CalculateCondition(Registers& regs, T fs, T ft, CompConds cond) {
switch(cond) {
case F: return false;
case UN: return std::isnan(fs) || std::isnan(ft);
@@ -553,4 +553,4 @@ void Cop1::dmtc1(Registers& regs, u32 instr) {
SetReg<u64>(regs.cop0, FS(instr), regs.gpr[RT(instr)]);
}
}
}