Welcome!

Final Burn Neo => FBN Development => Topic started by: dink on June 21, 2014, 02:22:50 AM

Title: UI Feature requests
Post by: dink on June 21, 2014, 02:22:50 AM
I have a couple ideas for UI Features that would really be really helpfull...

1: When Show Unavailable is checked, and a game isn't in the database, right clicking it and selecing 'rescan this romset' (or something similar) will check the romset, and add it to the database if it checks out ok.  This way a new rom can be added quickly without rescanning everything.  If adding a right-click is too much code/work, how about a button on the [Rom Info] window to do this? :)

2: well, thats it for now :)

best regards,
- dink
Title: Re: UI Feature requests
Post by: Romhack on June 24, 2014, 11:19:03 PM
I don't know about win32 api but that was very easy to implement on Qt version, the code is simple (on context menu click)
nBurnDrvActive = m_selectedDriver;
int stat = BzipOpen(1);
m_romScanner->setStatus(m_selectedDriver, stat);
BzipClose();
filterDrivers();
Title: Re: UI Feature requests
Post by: dink on June 24, 2014, 11:23:04 PM
Thanks, I'll try to get it working in the win32 ui :)