Add missing includes for recent microphone changes and add stubs for !WIN32 to continue compiling. Greeting from FROSCON!
This commit is contained in:
parent
17d4b20115
commit
fd7f8f0ef6
|
@ -52,4 +52,13 @@ void Mic_DoNoise(BOOL noise)
|
|||
silence = !noise;
|
||||
}
|
||||
|
||||
void mic_savestate(std::ostream* os)
|
||||
{
|
||||
}
|
||||
|
||||
bool mic_loadstate(std::istream* is, int size)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#ifndef MIC_H
|
||||
#define MIC_H
|
||||
#include <iostream>
|
||||
|
||||
#ifdef WIN32
|
||||
static char MicSampleName[256];
|
||||
|
|
|
@ -146,3 +146,13 @@ u8 Mic_ReadSample()
|
|||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* FIXME: stub! */
|
||||
void mic_savestate(std::ostream* os)
|
||||
{
|
||||
}
|
||||
|
||||
bool mic_loadstate(std::istream* is, int size)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue