Author Topic: src and compilation help  (Read 6932 times)

Offline hotaru

  • Newbies
  • *
  • Posts: 17
  • Karma: +0/-0
  • lampyridae lunaticus
src and compilation help
« 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 ;)
« Last Edit: February 15, 2016, 02:24:35 PM by iq_132 »

Offline fataku

  • Newbies
  • *
  • Posts: 22
  • Karma: +0/-0
  • Junior Member
src and compilation help
« Reply #1 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

Offline hotaru

  • Newbies
  • *
  • Posts: 17
  • Karma: +0/-0
  • lampyridae lunaticus
src and compilation help
« Reply #2 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 ;)