Software Support > GroovyMAME
GroovyMAME/ARCADE32/64 custom build
Recapnation:
It's sad they're fixing non-bugs whereas this remains for so many years. Shouldn't be too hard to figure out a hack -- MAME must be the only emulator where you find it.
But hey, what do I know.
totozero:
Hi haynor,
thanks for making this build.
Would it be possible to make another d3dex 64 version with a faster slider for the cpu overclock option ?
Default is slow as hell and it takes ages to reach 200%.
I use it all the time for mvs roms such as mslug and so...
if I do remember the file to be modified is ui.cpp
--- Code: ---// add CPU overclocking (cheat only)
slider_index = 0;
if (machine.options().cheat())
{
for (device_execute_interface &exec : execute_interface_iterator(machine.root_device()))
{
void *param = (void *)&exec.device();
std::string str = string_format(_("Overclock CPU %1$s"), exec.device().tag());
sliders.push_back(slider_alloc(machine, SLIDER_ID_OVERCLOCK + slider_index++, str.c_str(), 10, 1000, 2000, 1, param));
}
}
--- End code ---
and replace with
--- Quote ---// add CPU overclocking (cheat only)
slider_index = 0;
if (machine.options().cheat())
{
for (device_execute_interface &exec : execute_interface_iterator(machine.root_device()))
{
void *param = (void *)&exec.device();
std::string str = string_format(_("Overclock CPU %1$s"), exec.device().tag());
sliders.push_back(slider_alloc(machine, SLIDER_ID_OVERCLOCK + slider_index++, str.c_str(), 50, 1000, 2000, 1, param));
}
}
--- End quote ---
I usually make my own builds but I'd like to try yours :wink:
Many thanks, mate.
haynor666:
Does moving slider with CTRL pressed is not enough? It's really fast for me.
Nodoyuna:
Hi
Your version should not have the initial info screens before entering the game, right?
I ask because I keep getting them... Should I activate or deactivate anything in GM?
Thanks in advance
totozero:
--- Quote from: haynor666 on July 24, 2017, 05:27:33 am ---Does moving slider with CTRL pressed is not enough? It's really fast for me.
--- End quote ---
:dizzy: .... Ooooops... Really ?
I've been in Mame for years and I didn't even notice that holding ctrl enabled "fast-slinding". Guess you can learn something every day even with dumb questions ::)
Anyways, thanks for the input.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version