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
~~~~~~~~~~ ^ ~
Silences spammed
-Wtautological-compare
warnings with clang, based on what I have readreq_offset
should be signed.