mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Fix RENDERTYPE=WIN build by changing a const char* to a char*, which had been cast to (void *) before passing to free() (which is bad practice) prior to r5352.
git-svn-id: https://svn.eduke32.com/eduke32@5364 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a43cd066fb
commit
b0bde3ace5
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ static struct
|
|||
|
||||
static struct _joydef
|
||||
{
|
||||
const char *name;
|
||||
char *name;
|
||||
uint32_t ofs; // directinput 'dwOfs' value
|
||||
} *axisdefs = NULL, *buttondefs = NULL, *hatdefs = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue