libretro / beetle-bsnes-libretro

Standalone port of Mednafen bSNES to libretro, itself a fork of bsnes 0.59.
GNU General Public License v2.0
7 stars 15 forks source link

Silence a -Wbool-compare warning #15

Closed orbea closed 7 years ago

orbea commented 7 years ago

Silences a -Wbool-compare warning.

In file included from ./mednafen/include/blargg_common.h:9:0,
                 from ./mednafen/include/Fir_Resampler.h:7,
                 from mednafen/snes/interface.cpp:22:
mednafen/snes/interface.cpp: In member function ‘virtual int16_t MeowFace::input_poll(bool, unsigned int, unsigned int, unsigned int)’:
mednafen/snes/interface.cpp:276:15: warning: comparison of constant ‘2’ with boolean expression is always true [-Wbool-compare]
   assert(port < 2);
               ^