Welcome!

Final Burn Neo => FBN Development => Topic started by: hotaru on November 08, 2004, 09:42:49 PM

Title: src and compilation help
Post by: hotaru on November 08, 2004, 09:42:49 PM
could anyone help with this please?
Code: [Select]
src/burn/neogeo/d_neogeo.cpp:245: warning: aggregate has a partly bracketed initializer

src/burn/neogeo/d_neogeo.cpp:1534: parse error before '/' token
C:\MINGW\BIN\MAKE.EXE: *** [d_neogeo.o] Error 1
thank you ;)
Title: src and compilation help
Post by: fataku on November 08, 2004, 09:51:12 PM
go to the end of the file, find this:

struct BurnDriver BurnDrvkof2000d = {

   {"kof2000d", "The King of Fighters 2000 (decrypted c)", NULL, "", "Neo Geo", "", "kof2000", "neogeo"},
   BDF_GAME_WORKING | BDF_CLONE, 2, HARDWARE_SNK_NEOGEO | HARDWARE_SNK_SRAM | HARDWARE_SNK_ALTERNATE_TEXT | HARDWARE_SNK_SMA_PROTECTION,
   NULL, kof2000dRomInfo, kof2000dRomName, neogeoInputInfo, neogeoDIPInfo,
   kof2000dInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
   nNeoScreenWidth, 224, 4, 3
};

*/


and delete the last line, this stuff */, thats all, the warning i dont have an idea, looks like its ok, anyway the second one must be fixed deleting that line
Title: src and compilation help
Post by: hotaru on November 08, 2004, 09:57:08 PM
thanks for the quick reply fataku, i'll try it asap :)

[edit] got it :D thanks again fataku ;)