mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
changed EI handling a bit and types
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@471 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
28d596af36
commit
c299a73848
3 changed files with 7 additions and 9 deletions
|
@ -24,7 +24,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#ifndef INT8
|
||||
#define INT8 char
|
||||
#define INT8 signed char
|
||||
#endif
|
||||
|
||||
#ifndef UINT16
|
||||
|
@ -32,7 +32,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#ifndef INT16
|
||||
#define INT16 short
|
||||
#define INT16 signed short
|
||||
#endif
|
||||
|
||||
#ifndef UINT32
|
||||
|
@ -40,7 +40,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#ifndef INT32
|
||||
#define INT32 int
|
||||
#define INT32 signed int
|
||||
#endif
|
||||
|
||||
/*************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue