--- hatari/src/falcon/microphone.h 2019/04/09 08:48:47 1.1 +++ hatari/src/falcon/microphone.h 2019/04/09 08:49:39 1.1.1.2 @@ -9,12 +9,12 @@ #define HATARI_MICROPHONE_H #if HAVE_PORTAUDIO -extern int Microphone_Start (int sampleRate); -extern int Microphone_Stop (void); +extern bool Microphone_Start (int sampleRate); +extern bool Microphone_Stop (void); #else /* replace function calls with NOPs (could also be empty static inlines) */ -#define Microphone_Start(rate) 0 -#define Microphone_Stop() 0 +#define Microphone_Start(rate) false +#define Microphone_Stop() false #endif