overdev/raylib-py

Bug in the README

Closed this issue · 2 comments

The README uses RAYLIB_LIB_PATH like a name, but it should be a string. This...

os.environ[RAYLIB_LIB_PATH] = "path/to/the/binary"

...should be...

os.environ["RAYLIB_LIB_PATH"] = "path/to/the/binary"

I thought about updating it myself, but based on #4, I'm a bit confused about what it should say.

I'll close this, as #4 makes it redundant now.