diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 21:47:58 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 21:47:58 -0400 |
| commit | aa51ee072bd1d8587cc0b38d40c6971bdf5d1c0b (patch) | |
| tree | 4cc7314d8900aaeb31b9c4c4308e6970f262e4d0 /main.c | |
| parent | 586c2236573d156d8623eff00cef24ac688f88cb (diff) | |
| download | volute-aa51ee072bd1d8587cc0b38d40c6971bdf5d1c0b.zip | |
load compressors
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -94,10 +94,14 @@ main(void) { /* Init data structures. */ static UI ui; - init_ui(&ui); + if (init_ui(&ui) != 0) { + return 1; + } main_loop(&ctx, &ui); + free_ui(&ui); + return 0; } |