mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 02:09:06 +00:00
PowerPC: Fixed moronic bug in mcrfs - together with correctly computing FPRF (which is a new option, slows down slightly) in a few ops this fixes most remaining math errors in Super Monkey Ball and eliminates the need for the HLE hacks. Make sure to have up-to-date gameconfigs. Unfortunately, F-Zero still doesn't work. Misc other small changes. Indent some code.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3426 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
dd640a4937
commit
10442c8faa
17 changed files with 357 additions and 320 deletions
|
@ -1030,6 +1030,8 @@ enum NormalSSEOps
|
|||
}
|
||||
|
||||
void XEmitter::MOVQ_xmm(OpArg arg, X64Reg src) {
|
||||
if (arg.IsSimpleReg())
|
||||
PanicAlert("Emitter: MOVQ_xmm doesn't support single registers as destination");
|
||||
if (src > 7)
|
||||
{
|
||||
// Alternate encoding
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue