Use Bundle consistently (#70)

This commit is contained in:
Ken Van Hoeylandt
2024-11-04 21:19:24 +01:00
committed by GitHub
parent c11d63ef2d
commit 68aa34ad14
9 changed files with 34 additions and 14 deletions
+2 -2
View File
@@ -5,9 +5,9 @@
#include <string.h>
#include <tactility_core.h>
static Bundle* preferences_bundle;
static Bundle preferences_bundle;
static Bundle* get_preferences_bundle() {
static Bundle get_preferences_bundle() {
if (preferences_bundle == NULL) {
preferences_bundle = tt_bundle_alloc();
}