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 -Wtautological-compare warnings #20

Closed orbea closed 7 years ago

orbea commented 7 years ago

Silences spammed -Wtautological-compare warnings with clang, based on what I have read req_offset should be signed.

In file included from mednafen/snes/src/cartridge/../base.hpp:24:
./mednafen/snes/src/lib/nall/file.hpp:106:21: warning: comparison of unsigned expression < 0 is
      always false [-Wtautological-compare]
      if(req_offset < 0) req_offset = 0;  //cannot seek before start of file
         ~~~~~~~~~~ ^ ~