can build libprojectM+renderer+presetfactories and projectM-SDL with some Make. cmake status: BTFO

This commit is contained in:
Mischa Spiegelmock
2017-09-18 15:18:51 -07:00
parent 67eaf6d6f7
commit 7828b8fe07
19 changed files with 148 additions and 27 deletions

View File

@ -69,6 +69,7 @@ int projectMSDL::openAudioInput() {
audioSampleRate = have.freq;
audioSampleCount = have.samples;
audioFormat = have.format;
audioInputDevice = audioDeviceID;
return 1;
}
@ -144,8 +145,8 @@ void projectMSDL::addFakePCM() {
}
void projectMSDL::resize(unsigned int width, unsigned int height) {
width = width;
height = height;
this->width = width;
this->height = height;
settings.windowWidth = width;
settings.windowHeight = height;
projectM_resetGL(width, height);