olofson / audiality2

A realtime scripted modular audio engine for video games and musical applications.
http://audiality.org/
zlib License
79 stars 5 forks source link

'wire' cannot make connections to control registers of named units #289

Closed olofson closed 7 years ago

olofson commented 7 years ago

This fails with "Expected control register":

    struct {
        env o3e;    wtosc o3
        wire o3e.out o3.a
    }

...but this works:

    struct {
        env o3e;    wtosc
        wire o3e.out a
    }

Seems like 'wire' is not checking for namespaces for the second argument.