diff options
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 |