ryupold / examples-raylib.zig

Example usage of raylib.zig bindings
MIT License
43 stars 4 forks source link

raygui submodule configured incorrectly #1

Closed darthdeus closed 1 year ago

darthdeus commented 1 year ago

I needed to change .gitmodules to the following for it to work, the path = src/raygui was missing

[submodule "src/raylib"]
    path = src/raylib
    url = https://github.com/ryupold/raylib.zig
[submodule "src/raygui"]
    path = src/raygui     <-- added this
    url = https://github.com/ryupold/raygui.zig

I'm not sure if this is the correct solution, but it made everything work.

ryupold commented 1 year ago

Oh, that's why it showed up in the Github Code Browser without a link. Thanks for finding the problem 🙂