diff options
| author | Ray <[email protected]> | 2021-06-13 12:08:44 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-13 12:08:44 +0200 |
| commit | 3e68059556f628a172292ec99389fe2fbd820716 (patch) | |
| tree | fb2026f42b5702d5e1040bdd865e0a4e7828c920 | |
| parent | 213c990eda36f7981434bbd15163cc8b8cbe4bfe (diff) | |
| parent | 929fa5780da0230f4e20bb45549f91d23f8e700d (diff) | |
| download | raylib-3e68059556f628a172292ec99389fe2fbd820716.tar.gz raylib-3e68059556f628a172292ec99389fe2fbd820716.zip | |
Merge branch 'master' of https://github.com/raysan5/raylib
| -rw-r--r-- | BINDINGS.md | 2 | ||||
| -rw-r--r-- | parser/raylib_parser.c | 4 | ||||
| -rw-r--r-- | projects/scripts/README.md | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/BINDINGS.md b/BINDINGS.md index 5dad05da..886b8e67 100644 --- a/BINDINGS.md +++ b/BINDINGS.md @@ -46,7 +46,7 @@ Here it is a list with the ones I'm aware of: | raylib-ruby | 2.6 | [Ruby](https://www.ruby-lang.org/en/) | https://github.com/a0/raylib-ruby | | raylib-mruby | 2.5-dev | [mruby](https://github.com/mruby/mruby) | https://github.com/lihaochen910/raylib-mruby | | raylib-py | 2.0 | [Python](https://www.python.org/) | https://github.com/overdev/raylib-py | -| raylib-python-cffi | 3.5 | [Python](https://www.python.org/) | https://github.com/electronstudio/raylib-python-cffi | +| raylib-python-cffi | 3.7 | [Python](https://www.python.org/) | https://github.com/electronstudio/raylib-python-cffi | | raylib-py-ctbg | 2.6 | [Python](https://www.python.org/) | https://github.com/overdev/raylib-py-ctbg | | jaylib | 3.0 | [Java](https://en.wikipedia.org/wiki/Java_(programming_language)) | https://github.com/electronstudio/jaylib/ | | raylib-java | 2.0 | [Java](https://en.wikipedia.org/wiki/Java_(programming_language)) | https://github.com/XoanaIO/raylib-java | diff --git a/parser/raylib_parser.c b/parser/raylib_parser.c index 751e0cad..f2f3109f 100644 --- a/parser/raylib_parser.c +++ b/parser/raylib_parser.c @@ -115,7 +115,7 @@ char* CharReplace(char* text, char search, char replace); int main(int argc, char* argv[]) { // Help - if (IsTextEqual(argv[1], "--help", 6)) { + if (argv[1] != NULL && IsTextEqual(argv[1], "--help", 6)) { printf("Usage:\n"); printf(" raylib_parser [--json]\n"); return 0; @@ -123,7 +123,7 @@ int main(int argc, char* argv[]) // Allow changing the output format. int outputFormat = 0; - if (IsTextEqual(argv[1], "--json", 6)) { + if (argv[1] != NULL && IsTextEqual(argv[1], "--json", 6)) { outputFormat = JSON; } diff --git a/projects/scripts/README.md b/projects/scripts/README.md index ccc4b4db..abb65b77 100644 --- a/projects/scripts/README.md +++ b/projects/scripts/README.md @@ -6,7 +6,7 @@ exception to this however, and that is Windows, because Windows doesn't have a built-in C compiler. On Windows, you'll need to install [Visual Studio][visual-studio] or the [build tools][vs-tools]. If you didn't install them in the default location, write your changes around -line 101 of [`windows-build.bat`](windows-build.bat). +line 101 of [`build-windows.bat`](build-windows.bat). ## Script customization First of all, the scripts have a few variables at the very top, which |
