XbSymbolDatabase icon indicating copy to clipboard operation
XbSymbolDatabase copied to clipboard

TASK: Replace default OV array to macro usage

Open RadWolfie opened this issue 5 years ago • 0 comments

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),
...

RadWolfie avatar Mar 21 '19 03:03 RadWolfie