mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Lots of various changes. CPU detect fix. Maybe a minor speed increase. CPU bugs remain.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@180 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -1156,7 +1156,7 @@ namespace Gen
|
||||
void MOVDDUP(X64Reg regOp, OpArg arg)
|
||||
{
|
||||
// TODO(ector): check SSE3 flag
|
||||
if (cpu_info.bSSE3NewInstructions)
|
||||
if (cpu_info.bSSE3)
|
||||
{
|
||||
WriteSSEOp(64, 0x12, false, regOp, arg); //SSE3
|
||||
}
|
||||
@ -1205,7 +1205,7 @@ namespace Gen
|
||||
}
|
||||
|
||||
void PSHUFB(X64Reg dest, OpArg arg) {
|
||||
if (!cpu_info.bSSE3NewInstructions) {
|
||||
if (!cpu_info.bSSSE3) {
|
||||
PanicAlert("Trying to use PSHUFB on a system that doesn't support it. Bad programmer.");
|
||||
}
|
||||
Write8(0x66);
|
||||
|
Reference in New Issue
Block a user