From 392917d61fea478f7a40282586a0276c6e651242 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Wed, 10 Apr 2019 01:00:32 +0000 Subject: [PATCH] SW: Fix -Wpointer-bool-conversion git-svn-id: https://svn.eduke32.com/eduke32@7555 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/sw/src/sounds.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/sw/src/sounds.cpp b/source/sw/src/sounds.cpp index a3959c4be..206a6d7de 100644 --- a/source/sw/src/sounds.cpp +++ b/source/sw/src/sounds.cpp @@ -394,8 +394,10 @@ ExternalSoundMod(void) for (vp = voc; vp < &voc[SIZ(voc)]; vp++) { +#if 0 if (!vp->name) continue; +#endif if (!Bstrcasecmp(name, vp->name)) {