mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
fix useless byte keyword hack
This commit is contained in:
parent
07d29c5c30
commit
8e87a7899e
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
#define MULTITHREAD_ENABLE
|
#define MULTITHREAD_ENABLE
|
||||||
|
|
||||||
typedef unsigned char byte;
|
|
||||||
|
|
||||||
const int XUSER_INDEX_ANY = 255;
|
const int XUSER_INDEX_ANY = 255;
|
||||||
const int XUSER_INDEX_FOCUS = 254;
|
const int XUSER_INDEX_FOCUS = 254;
|
||||||
|
|
||||||
|
|
@ -25,7 +23,6 @@ const int MINECRAFT_NET_MAX_PLAYERS = 8;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __ORBIS__
|
#ifdef __ORBIS__
|
||||||
#include <net.h>
|
#include <net.h>
|
||||||
#include <np/np_npid.h>
|
#include <np/np_npid.h>
|
||||||
|
|
@ -417,7 +414,7 @@ const int QNET_SENDDATA_SEQUENTIAL = 0;
|
||||||
struct XRNM_SEND_BUFFER
|
struct XRNM_SEND_BUFFER
|
||||||
{
|
{
|
||||||
DWORD dwDataSize;
|
DWORD dwDataSize;
|
||||||
byte *pbyData;
|
BYTE *pbyData;
|
||||||
};
|
};
|
||||||
|
|
||||||
const int D3DBLEND_CONSTANTALPHA = 0;
|
const int D3DBLEND_CONSTANTALPHA = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue