From 4c570131c3220ff83c205d263aa03fe872005af9 Mon Sep 17 00:00:00 2001 From: Nishi Date: Wed, 27 May 2026 21:36:26 +0900 Subject: [PATCH] format --- engine/src/mixer.cc | 2 +- engine/src/thread/sdl2.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/src/mixer.cc b/engine/src/mixer.cc index 916da2b..65cdc08 100644 --- a/engine/src/mixer.cc +++ b/engine/src/mixer.cc @@ -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; diff --git a/engine/src/thread/sdl2.cc b/engine/src/thread/sdl2.cc index b55098f..7f99e6f 100644 --- a/engine/src/thread/sdl2.cc +++ b/engine/src/thread/sdl2.cc @@ -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(); }