Final Burn Neo > FBN Development

Thunder Heroes driver

<< < (2/2)

Shoometsu:
the last driver uses very long rom names (i.e. "t-hero-snd3.u0455"). nobody posted here, but I needed to change BurnRomInfo.szName size.

src/burn/burn.h
find

--- Quote ---struct BurnRomInfo {
   char szName[16];
   unsigned int nLen;
   unsigned int nCrc;
   unsigned int nType;
};

--- End quote ---
replace with

--- Quote ---struct BurnRomInfo {
   char szName[24];
   unsigned int nLen;
   unsigned int nCrc;
   unsigned int nType;
};

--- End quote ---

Leaf:

--- Quote from: BisonSAS on January 13, 2007, 12:45:27 PM ---No Leaf. :cool:
My question is about this title:

--- End quote ---
Sorry, I misunderstood. :p


--- Quote from: Shoometsu on January 15, 2007, 07:08:30 PM ---the last driver uses very long rom names (i.e. "t-hero-snd3.u0455"). nobody posted here, but I needed to change BurnRomInfo.szName size.

--- End quote ---
Why not change it to:

--- Quote ---struct BurnRomInfo {
    char* szName;
    unsigned int nLen;
    unsigned int nCrc;
    unsigned int nType;
};

--- End quote ---
:biggrin:

Navigation

[0] Message Index

[*] Previous page

Go to full version