overdev / raylib-py

A Python binding for the great C library raylib.
Other
185 stars 20 forks source link

Bug in the README #5

Closed carlsmith closed 5 years ago

carlsmith commented 5 years ago

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"
carlsmith commented 5 years ago

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

carlsmith commented 5 years ago

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