From 62b4644a49783f04ae1a0000e98d40b241f9cbd4 Mon Sep 17 00:00:00 2001 From: doom <61824552+JustDoom@users.noreply.github.com> Date: Sat, 15 Feb 2025 11:55:46 +1000 Subject: [PATCH] Temp disable audio --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index db75728..c6ac2a6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -96,7 +96,7 @@ int main(int argc, char **argv) { } } - if (!SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO)) { + if (!SDL_Init(SDL_INIT_VIDEO)) { std::cerr << "SDL could not initialize! SDL_Error: " << SDL_GetError() << std::endl; return 1; }