mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Merge illwieckz their portability fix
This commit is contained in:
parent
3408871d79
commit
be993ad422
3 changed files with 4 additions and 5 deletions
|
@ -77,6 +77,10 @@ extern "C"
|
|||
#define PICO_IOERR 2
|
||||
|
||||
/* types */
|
||||
#ifndef byte
|
||||
typedef unsigned char byte;
|
||||
#endif
|
||||
|
||||
typedef struct picoParser_s
|
||||
{
|
||||
const char *buffer;
|
||||
|
|
|
@ -76,10 +76,6 @@
|
|||
#define INFO_HEIGHT 5
|
||||
#define INFO_Y ( SKINPAGE_HEIGHT - INFO_HEIGHT )
|
||||
|
||||
#ifndef byte
|
||||
#define byte unsigned char
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// Generic header on every chunk
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
|
||||
/* dependencies */
|
||||
#include "picointernal.h"
|
||||
#include "bytebool.h"
|
||||
|
||||
extern const picoModule_t picoModuleIQM;
|
||||
|
||||
|
|
Loading…
Reference in a new issue