disable all info logs from non game places

This commit is contained in:
Anthony Samms
2025-10-27 01:14:53 -04:00
parent 3afa9db5ac
commit 0798e53b0e
6 changed files with 28 additions and 12 deletions

View File

@@ -104,6 +104,7 @@ def main():
current_screen = Screens.LOADING
audio.set_log_level(1)
audio.init_audio_device()
create_song_db()
@@ -134,8 +135,8 @@ def main():
Screens.LOADING: load_screen
}
target = ray.load_render_texture(screen_width, screen_height)
ray.set_texture_filter(target.texture, ray.TextureFilter.TEXTURE_FILTER_TRILINEAR)
ray.gen_texture_mipmaps(target.texture)
ray.set_texture_filter(target.texture, ray.TextureFilter.TEXTURE_FILTER_TRILINEAR)
ray.rl_set_blend_factors_separate(RL_SRC_ALPHA, RL_ONE_MINUS_SRC_ALPHA, RL_ONE, RL_ONE_MINUS_SRC_ALPHA, RL_FUNC_ADD, RL_FUNC_ADD)
ray.set_exit_key(ord(global_data.config["keys_1p"]["exit_key"]))