This commit is contained in:
parent
e622ed8736
commit
98cda26d9d
|
@ -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
|
||||
|
|
1
Makefile
1
Makefile
|
@ -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 =
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue