DSPHLE: Remove duplicated struct

This is already present in the DSPHLE class directly
This commit is contained in:
Lioncash 2015-10-16 13:02:18 -04:00
parent 05e339a605
commit 1b3307043b
1 changed files with 0 additions and 18 deletions

View File

@ -21,24 +21,6 @@ DSPHLE::DSPHLE()
{
}
// Mailbox utility
struct DSPState
{
u32 CPUMailbox;
u32 DSPMailbox;
void Reset()
{
CPUMailbox = 0x00000000;
DSPMailbox = 0x00000000;
}
DSPState()
{
Reset();
}
};
bool DSPHLE::Initialize(bool bWii, bool bDSPThread)
{
m_bWii = bWii;