raysan5 / raygui

A simple and easy-to-use immediate-mode gui library
zlib License
3.47k stars 298 forks source link

Missing files in style_selector example #308

Closed Fibertero closed 1 year ago

Fibertero commented 1 year ago

When I went to run the makefile from the examples folder, I got the following error:

animation_curve/animation_curve.c:25:10: fatal error: ../style_selector/styles/style_cyber.h: No such file or directory
   25 | #include "../style_selector/styles/style_cyber.h" // raygui style: cyber
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.

That's because the styles folder should be inside the style_selector directory.

raysan5 commented 1 year ago

reviewed!

dimsuz commented 1 year ago

Hmm, I have the same error (slightly different include) on the current master:

animation_curve/animation_curve.c:25:10: fatal error: ../../styles/cyber/cyber.h: No such file or directory
   25 | #include "../../styles/cyber/cyber.h"       // raygui style: cyber
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
raysan5 commented 1 year ago

@dimsuz thanks for reporting, reviewed!