Fix GCC output being annoying with ACSVM
This commit is contained in:
parent
2be0f7baa9
commit
107b822f54
2 changed files with 6 additions and 2 deletions
|
|
@ -9,7 +9,9 @@
|
|||
// Thread execution.
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
|
||||
#endif
|
||||
#include "Thread.hpp"
|
||||
|
||||
#include "Array.hpp"
|
||||
|
|
|
|||
|
|
@ -9426,8 +9426,10 @@ UINT16 P_PartialAddWadFile(const char *wadfilename, wadcompat_t compat)
|
|||
{
|
||||
name = lumpinfo->name;
|
||||
|
||||
if (P_CheckSoundReplacements(name, i));
|
||||
if (P_CheckSoundReplacements(name, i))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!allvotereplaced && P_CheckVoteReplacements(name))
|
||||
allvotereplaced = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue