diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-12-07 16:25:40 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-12-07 16:26:14 +0100 |
| commit | 2c68ae7af428a08792c73f8b78c5ad43f673be61 (patch) | |
| tree | 77ef649eb5656ccda5179f33bce6cc7a5b5537b3 /tests/functional | |
| parent | 4677f4050e5fa5044e8e06928675a3e3d3bf763f (diff) | |
fix tests (forgot an sg_shutdown in sokol_debugtext_test)
Diffstat (limited to 'tests/functional')
| -rw-r--r-- | tests/functional/sokol_debugtext_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functional/sokol_debugtext_test.c b/tests/functional/sokol_debugtext_test.c index 205fd537..598e83e3 100644 --- a/tests/functional/sokol_debugtext_test.c +++ b/tests/functional/sokol_debugtext_test.c @@ -517,4 +517,5 @@ UTEST(sokol_debug_text, command_buffer_overflow) { sdtx_layer(4); sdtx_puts("4"); T(_sdtx.cur_ctx->commands.next == 4); -}
\ No newline at end of file + shutdown(); +} |