diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-12-23 23:47:16 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-12-23 23:47:16 +0100 |
| commit | aa7043faa9ed8ed676603bd1a44388026700b3b1 (patch) | |
| tree | 22d611caf3c76913975a0b011658abdb4713db0c /src/asset_defs.c | |
| parent | 0bd58d53437969264a0c217f9048baa71a4ef698 (diff) | |
audio work
Diffstat (limited to 'src/asset_defs.c')
| -rw-r--r-- | src/asset_defs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asset_defs.c b/src/asset_defs.c index 4fe621d..70877a3 100644 --- a/src/asset_defs.c +++ b/src/asset_defs.c @@ -62,6 +62,7 @@ void load_assets() { wav_error = Mix_LoadWAV("data/sounds/error.wav"); wav_impact_zombie = Mix_LoadWAV("data/sounds/impact_zombie.wav"); wav_collect = Mix_LoadWAV("data/sounds/collect.wav"); + round_change = Mix_LoadWAV("data/sounds/round_change.wav"); } font* get_font(platform_window* window, float scale) { @@ -75,7 +76,6 @@ font* get_font(platform_window* window, float scale) { if (index_to_return < 0) index_to_return = 0; if (index_to_return > 10) index_to_return = 10; - log_infox("%d %d", (int)(diff/0.2f), index_to_return); font* arr[] = { fnt_12, // scale = 0.2 fnt_16, |
