XbSymbolDatabase
XbSymbolDatabase copied to clipboard
TASK: Replace default OV array to macro usage
Library databases to work on:
- D3D8 (Assigned to: __ )
- D3D8LTCG (Assigned to: __ )
- DSound (Do not fix this database)
- JVS (Assigned to: __ )
- XActEng (Assigned to: __ )
- Xapi (Assigned to: __ )
- XGraphic (Assigned to: __ )
- XNet (Assigned to: __ )
- XOnline (Assigned to: __ )
Using generic offset value pair array are no longer advice to use:
{ 0x00, 0x04 },
{ 0x01, 0x56 },
{ 0x10, 0x03 },
...
It will need replace to use OV_MATCH macro:
OV_MATCH(0x00, 0x04, 0x56),
OV_MATCH(0x10, 0x03),
...