raylib/src
Rob Loach c14c7f0b69
raudio: Fix warning on discarded const qualifier (#2967)
The `qoaplay_open()` function expects a `char *`, but we are passing in a `const char *`. While this works just fine, it does issue a compiler warning when strict:

```
src/raudio.c: In function ‘LoadMusicStream’:
src/raudio.c:1290:45: warning: passing argument 1 of ‘qoaplay_open’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
 1290 |         qoaplay_desc *ctxQoa = qoaplay_open(fileName);
      |                                             ^~~~~~~~
In file included from src/raudio.c:233:
src/external/qoaplay.c:86:34: note: expected ‘char *’ but argument is of type ‘const char *’
   86 | qoaplay_desc *qoaplay_open(char *path)
      |                            ~~~~~~^~~~
```

This change casts the argument to a `char *` to fix the warning.
2023-03-19 11:16:52 +01:00
..
external Update miniaudio.h 2023-03-13 11:48:34 +01:00
build.zig zig build: do not use deprecated functions (#2913) 2023-02-06 10:28:24 +01:00
CMakeLists.txt fix(build): Fix DLL build on Windows (#2951) 2023-03-06 21:10:18 +01:00
config.h Update config.h 2023-03-15 17:51:23 +01:00
Makefile Update Makefile comment to indicate arm64 as a supported Linux desktop platform (#2965) 2023-03-18 17:37:04 +01:00
minshell.html Fixed some grammar mistakes and typos. (#2914) 2023-02-09 13:17:47 +01:00
raudio.c raudio: Fix warning on discarded const qualifier (#2967) 2023-03-19 11:16:52 +01:00
raylib.dll.rc Update year to 2023 2023-01-01 16:07:51 +01:00
raylib.dll.rc.data Some tweaks 2023-03-12 20:14:32 +01:00
raylib.h Some tweaks 2023-03-12 20:14:32 +01:00
raylib.ico Updated icon data 2018-09-26 16:02:42 +02:00
raylib.rc Update year to 2023 2023-01-01 16:07:51 +01:00
raylib.rc.data Some tweaks 2023-03-12 20:14:32 +01:00
raymath.h Clean trailing spaces 2023-02-05 16:30:23 +01:00
rcamera.h REVIEWED: UpdateCameraPro() to use Vector3 2023-03-12 19:40:43 +01:00
rcore.c ADDED: Security check for emscripten_run_script() #2954 2023-03-12 13:48:11 +01:00
rgestures.h Fixed some grammar mistakes and typos. (#2914) 2023-02-09 13:17:47 +01:00
rglfw.c Fix missing symbol when rglfw.c on BSD platforms (#2968) 2023-03-19 09:43:51 +01:00
rlgl.h Update rlgl.h 2023-03-14 13:06:17 +01:00
rmodels.c Remove trailing spaces 2023-03-13 12:08:23 +01:00
rshapes.c Fixed some grammar mistakes and typos. (#2914) 2023-02-09 13:17:47 +01:00
rtext.c Remove trailing spaces 2023-03-13 12:08:23 +01:00
rtextures.c Remove trailing spaces 2023-03-13 12:08:23 +01:00
shell.html Fixed some grammar mistakes and typos. (#2914) 2023-02-09 13:17:47 +01:00
utils.c REVIEWED: TraceLog(), avoid possible buffer overflow 2023-03-15 13:03:55 +01:00
utils.h Update year to 2023 2023-01-01 16:07:51 +01:00