mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 04:20:42 +00:00
SW: Fix -Wpointer-bool-conversion
git-svn-id: https://svn.eduke32.com/eduke32@7555 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
97e9f1ee75
commit
392917d61f
1 changed files with 2 additions and 0 deletions
|
@ -394,8 +394,10 @@ ExternalSoundMod(void)
|
||||||
|
|
||||||
for (vp = voc; vp < &voc[SIZ(voc)]; vp++)
|
for (vp = voc; vp < &voc[SIZ(voc)]; vp++)
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
if (!vp->name)
|
if (!vp->name)
|
||||||
continue;
|
continue;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (!Bstrcasecmp(name, vp->name))
|
if (!Bstrcasecmp(name, vp->name))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue