From 851f176c8e34516091203d897169b01390796d01 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Wed, 27 Aug 2008 20:40:34 +0000 Subject: [PATCH] Changed the "align" parameter from 0 to 1, since the docs say it has to be aligned. git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@63 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/x86/ix86-32/iR5900-32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/ix86-32/iR5900-32.c b/pcsx2/x86/ix86-32/iR5900-32.c index 5dcac66852..52d119949e 100644 --- a/pcsx2/x86/ix86-32/iR5900-32.c +++ b/pcsx2/x86/ix86-32/iR5900-32.c @@ -2607,7 +2607,7 @@ void recompileNextInstruction(int delayslot) case 49: recLWC1_coX(g_pCurInstInfo->numpeeps); break; case 57: recSWC1_coX(g_pCurInstInfo->numpeeps); break; case 55: recLD_coX(g_pCurInstInfo->numpeeps); break; - case 63: recSD_coX(g_pCurInstInfo->numpeeps, 0); break; //the 0 is just temporary, find out what should go there + case 63: recSD_coX(g_pCurInstInfo->numpeeps, 1); break; default: assert(0); }