Browse Source

wiiu: don't seek beyond EOF

wii
GaryOderNichts 3 years ago committed by Anders Jenbo
parent
commit
8372e3e323
  1. 3
      Source/mpq/mpq_writer.hpp

3
Source/mpq/mpq_writer.hpp

@ -62,7 +62,8 @@ private:
// Amiga cannot Seekp beyond EOF.
// See https://github.com/bebbo/libnix/issues/30
#ifndef __AMIGA__
// Same goes for Wii U.
#if !defined(__AMIGA__) && !defined(__WIIU__)
#define CAN_SEEKP_BEYOND_EOF
#endif

Loading…
Cancel
Save