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;
|
silence = !noise;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mic_savestate(std::ostream* os)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
bool mic_loadstate(std::istream* is, int size)
|
||||||
|
{
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
#ifndef MIC_H
|
#ifndef MIC_H
|
||||||
#define MIC_H
|
#define MIC_H
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
static char MicSampleName[256];
|
static char MicSampleName[256];
|
||||||
|
|
|
@ -146,3 +146,13 @@ u8 Mic_ReadSample()
|
||||||
|
|
||||||
return ret;
|
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