mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-20 11:11:34 +00:00
Fix use of ssize_t with MSVC
This commit is contained in:
parent
ca22f2dd3f
commit
713846f27a
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,9 @@
|
||||||
|
|
||||||
#ifdef HAVE_MPG123
|
#ifdef HAVE_MPG123
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
typedef SSIZE_T ssize_t;
|
||||||
|
#endif
|
||||||
#include "mpg123.h"
|
#include "mpg123.h"
|
||||||
|
|
||||||
struct MPG123Decoder : public SoundDecoder
|
struct MPG123Decoder : public SoundDecoder
|
||||||
|
|
Loading…
Reference in a new issue