This commit is contained in:
Nishi 2026-05-27 21:36:26 +09:00
commit 4c570131c3
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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();
}