Skip to content

Commit

Permalink
2.3.2 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiLko committed Jan 11, 2025
1 parent 50d67c6 commit 2eed3dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Fixed android default render codec.
* Fixed android width input length being limited to 3.
* Fixed macros folder not creating automatically if not found.
* Fixed song file not found on android render (it cant do audio at all).

# v2.3.1

Expand Down
4 changes: 4 additions & 0 deletions src/renderer/renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,10 @@ void Renderer::start() {
});
std::this_thread::sleep_for(std::chrono::milliseconds(100));

#ifdef GEODE_IS_ANDROID
audioMode = AudioMode::Off;
#endif

if ((SFXVolume == 0.f && musicVolume == 0.f) || audioMode == AudioMode::Off || (audioMode == AudioMode::Song && !std::filesystem::exists(songFile)) || (audioMode == AudioMode::Record && !std::filesystem::exists("fmodoutput.wav"))) {
if (audioMode != AudioMode::Off) {
Loader::get()->queueInMainThread([] {
Expand Down

0 comments on commit 2eed3dd

Please sign in to comment.