This commit is contained in:
Aaron Robinson 2003-02-12 21:11:57 +00:00
parent e622ed8736
commit 98cda26d9d
3 changed files with 11 additions and 11 deletions

View File

@ -57,12 +57,6 @@ struct OVPS
// ******************************************************************
struct OVP
{
union OVPU
{
OVPL *ovpl;
OVPS *ovps;
};
};
// ******************************************************************
@ -71,9 +65,14 @@ struct OVP
struct OOVPA
{
uint16 Count : 15; // Number of Order,Value Pairs
uint16 Large : 1; // "Large" or "Small" offsets? (16,8 bit)
OVP ovp;
uint16 Large : 1; // Large (16 bit) or Small (8 bit) offsets?
union OVPU
{
OVPL ovpl[];
OVPS ovps[];
}
ovpu;
};
#endif

View File

@ -42,6 +42,7 @@ GCC295 = cpp0-2.95
OBJECTS = Source/Core/Error.o \
Source/Core/Exe.o \
Source/Core/Xbe.o \
Source/Core/OpenXDK.o \
Source/Standard/Cxbe/Main.o
RESOURCES =

View File

@ -33,7 +33,7 @@
// ******************************************************************
#include "Cxbx.h"
extern uint08 OpenXDK[] =
uint08 OpenXDK[] =
{
0x5A, 0x06, 0x23, 0x49, 0x13, 0x0F, 0x33, 0x49, 0x13, 0x0F,
0x13, 0x4F, 0x33, 0x0D, 0x13, 0x49, 0x23, 0x46, 0x00, 0x23,
@ -75,4 +75,4 @@ extern uint08 OpenXDK[] =
0x33, 0xFA, 0x00, 0x13, 0x0F, 0x13, 0xBE, 0x06, 0x03,
};
extern uint32 dwSizeOfOpenXDK = 0x0000017B;
uint32 dwSizeOfOpenXDK = 0x0000017B;