mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
This should fix the "assignment discards 'const' qualifier" warning in music.c.
git-svn-id: https://svn.eduke32.com/eduke32@2824 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
9000e23683
commit
0482d67894
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ const char *MUSIC_ErrorString
|
||||||
)
|
)
|
||||||
|
|
||||||
{
|
{
|
||||||
char *ErrorString;
|
const char *ErrorString;
|
||||||
|
|
||||||
switch (ErrorNumber)
|
switch (ErrorNumber)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue