Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
commit
3e68059556
@ -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 |
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user