mirror of https://github.com/PCSX2/pcsx2.git
Removed redundant initialisation code (covered in the resets), reverted a little pointless shuffling.
This commit is contained in:
parent
b574d06f5f
commit
9284a01346
|
@ -39,10 +39,6 @@ void hwInit()
|
|||
|
||||
VifUnpackSSE_Init();
|
||||
|
||||
// From ipuInit
|
||||
decoder.picture_structure = FRAME_PICTURE; //default: progressive...my guess:P
|
||||
ipu_cmd.current = 0xffffffff;
|
||||
|
||||
hwInitialized = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -70,9 +70,10 @@ __fi void IPUProcessInterrupt()
|
|||
|
||||
void ipuReset()
|
||||
{
|
||||
memzero(ipuRegs);
|
||||
memzero(g_BP);
|
||||
memzero(decoder);
|
||||
memzero(ipuRegs);
|
||||
|
||||
decoder.picture_structure = FRAME_PICTURE; //default: progressive...my guess:P
|
||||
|
||||
ipu_fifo.init();
|
||||
|
|
Loading…
Reference in New Issue