diff options
author | Joe <rbo@gmx.us> | 2023-12-26 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-26 20:20:20 +0100 |
commit | 245627d191cd4d7f67ddbaed2a73ee6b61c481f6 (patch) | |
tree | b9089d0bbad978de43710538647af74a14a5c111 /c_hardflip.go | |
parent | up (diff) | |
download | hardflip-245627d191cd4d7f67ddbaed2a73ee6b61c481f6.tar.gz hardflip-245627d191cd4d7f67ddbaed2a73ee6b61c481f6.tar.bz2 hardflip-245627d191cd4d7f67ddbaed2a73ee6b61c481f6.tar.xz hardflip-245627d191cd4d7f67ddbaed2a73ee6b61c481f6.tar.zst hardflip-245627d191cd4d7f67ddbaed2a73ee6b61c481f6.zip |
it builds at least
Diffstat (limited to '')
-rw-r--r-- | c_hardflip.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/c_hardflip.go b/c_hardflip.go index f7585b4..f0c663f 100644 --- a/c_hardflip.go +++ b/c_hardflip.go @@ -57,11 +57,12 @@ type HardData struct { func main() { data_dir := c_get_data_dir() - ldirs := c_load_data_dir(data_dir) + opts := HardOpts{true, true, false} + ldirs := c_load_data_dir(data_dir, opts) data := HardData{ ldirs, HardUI{}, - HardOpts{true, true, false}, + opts, data_dir, } // dir := data.ldirs.head |