This commit is contained in:
Robert Pancoast
2020-02-28 09:24:28 -05:00
parent 3d437b6b94
commit 11a9c7b041
5 changed files with 8 additions and 8 deletions

View File

@ -921,7 +921,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../projectM-sdl/projectM-SDL",
"$(SRCROOT)/../../mac",
"$(SRCROOT)/../..",
"$(SRCROOT)/Renderer",
"$(SRCROOT)/",
@ -983,7 +983,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../projectM-sdl/projectM-SDL",
"$(SRCROOT)/../../mac",
"$(SRCROOT)/../..",
"$(SRCROOT)/Renderer",
"$(SRCROOT)/",

View File

@ -643,7 +643,7 @@
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../libprojectM",
/usr/local/include,
"$(SRCROOT)/projectM-SDL",
"$(SRCROOT)/../../mac",
);
INFOPLIST_FILE = "$(SRCROOT)/projectM-SDL/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "@executable_path/ @loader_path/../Frameworks/ @loader_path/Frameworks/";
@ -668,7 +668,7 @@
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../libprojectM",
/usr/local/include,
"$(SRCROOT)/projectM-SDL",
"$(SRCROOT)/../../mac",
);
INFOPLIST_FILE = "$(SRCROOT)/projectM-SDL/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "@executable_path/ @loader_path/../Frameworks/ @loader_path/Frameworks/";

View File

@ -81,11 +81,11 @@ int projectMSDL::toggleAudioInput() {
if (CurAudioDevice >= NumAudioDevices)
CurAudioDevice = 0;
selectedAudioDevice = CurAudioDevice;
InitAudioInput();
initAudioInput();
return 1;
}
int projectMSDL::InitAudioInput() {
int projectMSDL::initAudioInput() {
// params for audio input
@ -149,7 +149,7 @@ int projectMSDL::openAudioInput() {
}
}
InitAudioInput();
initAudioInput();
return 1;
}

View File

@ -93,7 +93,7 @@ public:
void init(SDL_Window *window, SDL_GLContext *glCtx, const bool renderToTexture = false);
int openAudioInput();
int toggleAudioInput();
int InitAudioInput();
int initAudioInput();
void beginAudioCapture();
void endAudioCapture();
void stretchMonitors();