Author Topic: Help with fbn's compiling (mk roms and power instinct hack)  (Read 3281 times)

Offline Igor_Arabe

  • Newbies
  • *
  • Posts: 24
  • Karma: +0/-0
Hey there. I downloaded the fbn's source (commit 'c2493a7'), added some romsets (in post90, neogeo and cps1-2), and compiled (vs2017).
I had some problems:
1. The mk Roms (I tested only mk, mk2, mk3, umk3) didn't work, appers only a black screen. Their emulation is private, and will only be available on github after the release of version *44?
2. Power Instinct (Brazil) did not work, only the warning appears:  "There was a problem starting 'Power Instinct (Brasil)'  "*


*code attached.

Ps: sorry bad english

Offline dink

  • Administrator
  • *****
  • Posts: 5014
  • Karma: +449/-1
  • pie? I nearly bought one!
Re: Help with fbn's compiling (mk roms and power instinct hack)
« Reply #1 on: July 25, 2019, 08:03:09 PM »
Hi,
I'm using gcc and all the midway games work (mk, mk2, mk3 etc) - no source is private except stuff not finished, like sega s24.
Maybe it's an issue with VS2017?   Kev, can you verify if possible?   :)

Offline dink

  • Administrator
  • *****
  • Posts: 5014
  • Karma: +449/-1
  • pie? I nearly bought one!
Re: Help with fbn's compiling (mk roms and power instinct hack)
« Reply #2 on: July 25, 2019, 08:07:54 PM »
To fix powerins. Brasil, find this line:
Code: [Select]
if ( strcmp(BurnDrvGetTextA(DRV_NAME), "powerins") == 0 || strcmp(BurnDrvGetTextA(DRV_NAME), "powerinsj") == 0) {

replace with this line:
Code: [Select]
if ( strcmp(BurnDrvGetTextA(DRV_NAME), "powerins") == 0 || strcmp(BurnDrvGetTextA(DRV_NAME), "powerinsj") == 0 || strcmp(BurnDrvGetTextA(DRV_NAME), "powernbr") == 0) {

Offline Igor_Arabe

  • Newbies
  • *
  • Posts: 24
  • Karma: +0/-0
Re: Help with fbn's compiling (mk roms and power instinct hack)
« Reply #3 on: July 25, 2019, 10:46:47 PM »
Many thanks for the powerins fix. I will continue testing, compiling with vs17.
« Last Edit: July 25, 2019, 11:28:28 PM by Igor_Arabe »