format
This commit is contained in:
parent
8e5b90f9aa
commit
4c570131c3
2 changed files with 3 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ void fishbone::Mixer::read(short* buffer, size_t frames) {
|
|||
|
||||
fishbone::Sound* fishbone::Mixer::open(const char* path) {
|
||||
for(int i = 0; i < this->loaders.size(); i++) {
|
||||
//this->loaders[i]->open();
|
||||
// this->loaders[i]->open();
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ fishbone::Thread::Thread(void (*call)(fishbone::Thread* thread, void* arg), void
|
|||
data->thread = this;
|
||||
data->arg = arg;
|
||||
|
||||
this->impl = new fishbone::Thread::Impl();
|
||||
this->impl = new fishbone::Thread::Impl();
|
||||
this->impl->thread = SDL_CreateThread(thread_call, "FBThread", data);
|
||||
}
|
||||
|
||||
|
|
@ -46,7 +46,7 @@ struct fishbone::Mutex::Impl {
|
|||
};
|
||||
|
||||
fishbone::Mutex::Mutex() {
|
||||
this->impl = new fishbone::Mutex::Impl();
|
||||
this->impl = new fishbone::Mutex::Impl();
|
||||
this->impl->mutex = SDL_CreateMutex();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue