diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-11-19 04:39:24 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-11-19 04:39:24 +0100 |
commit | 2578a9f397f3637667fc9518d89f06570b161705 (patch) | |
tree | 3ca6a2b05652c58eafc1104a6cb71073c5562475 /reduced_system_layer.c | |
parent | 0269c40d9b94f49576b1c7ece0f768eb551686e5 (diff) | |
download | reduced_system_layer-2578a9f397f3637667fc9518d89f06570b161705.zip |
Add prefix for bitfont var
Diffstat (limited to 'reduced_system_layer.c')
-rwxr-xr-x | reduced_system_layer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c index bbb2a87..17956b3 100755 --- a/reduced_system_layer.c +++ b/reduced_system_layer.c @@ -48,6 +48,7 @@ #/ - Graphics #/ - Self-contained impl #/ - UI +#/ - Icons #/ - Vector math #/ - Blending #/ - Anti-aliasing @@ -1713,7 +1714,7 @@ __attribute__((export_name("js_max_num_audio_frames"))) i32 js_max_num_audio_fra } __attribute__((export_name("js_sound_buffer"))) void *js_sound_buffer(void) { - return NULL; + return _sound_ring; } __attribute__((export_name("js_sound_sync"))) i64 js_sound_sync(void) { |