Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: hiscore diff (with no nag/white box removal)  (Read 616669 times)

0 Members and 1 Guest are viewing this topic.

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1160 on: July 16, 2016, 12:58:31 pm »
here is a screen shot of all my paths within Mame Compiler 64 everything is exactly how I use to do it without issues.

As far as applying this patch --binary -p0 -E <C:\msys32\hi_175.diff  can someone elaborate the steps on this ?
am I supposed to do this in windows CMD ?

I never had to do any of these steps before I am use to just applying the patch within Mame compiler on the patch tab
Follow the instructions here:
http://forum.attractmode.org/index.php?topic=348.0

brucelee00

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 110
  • Last login:December 13, 2020, 05:16:36 pm
Re: hiscore diff (with no nag/white box removal)
« Reply #1161 on: July 16, 2016, 01:58:05 pm »
here is a screen shot of all my paths within Mame Compiler 64 everything is exactly how I use to do it without issues.

As far as applying this patch --binary -p0 -E <C:\msys32\hi_175.diff  can someone elaborate the steps on this ?
am I supposed to do this in windows CMD ?

I never had to do any of these steps before I am use to just applying the patch within Mame compiler on the patch tab
Follow the instructions here:
http://forum.attractmode.org/index.php?topic=348.0

That helped. Thank you! Now, how would I compile via cmd line using the various options in Mame compiler 64 ? for example just make a Mess compile or making sure direct input is or isn't compiled etc...
« Last Edit: July 16, 2016, 02:42:52 pm by brucelee00 »

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1162 on: July 27, 2016, 06:18:02 am »
hi_175.txt doesn't work with 0.176 source tree.
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1163 on: July 27, 2016, 08:42:40 am »
hi_175.txt doesn't work with 0.176 source tree.

hi_176.txt Patches, Compiles & Appears to run ok, But not sure if what I have done is correct. (MKChamp?)

Changed hiscore.cpp Line #372
From:
   timer = machine.scheduler().timer_alloc(FUNC(hiscore_periodic));

To:
   timer = machine.scheduler().timer_alloc(timer_expired_delegate(FUNC(hiscore_periodic), &machine));

« Last Edit: July 27, 2016, 10:35:47 am by ozfalcon »

MKChamp

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 502
  • Last login:February 07, 2024, 02:45:53 pm
  • Stil around.
Re: hiscore diff (with no nag/white box removal)
« Reply #1164 on: July 27, 2016, 03:31:21 pm »
hi_175.txt doesn't work with 0.176 source tree.

hi_176.txt Patches, Compiles & Appears to run ok, But not sure if what I have done is correct. (MKChamp?)

Changed hiscore.cpp Line #372
From:
   timer = machine.scheduler().timer_alloc(FUNC(hiscore_periodic));

To:
   timer = machine.scheduler().timer_alloc(timer_expired_delegate(FUNC(hiscore_periodic), &machine));

Looks and runs good to me. Uploaded to the front page.   Thanks once again for getting this so fast!

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1165 on: July 27, 2016, 09:35:13 pm »
I have noticed the hiscore.dat download page has changed.
http://highscore.mameworld.info/download.htm

This may be confusing for some.

If you are using this hiscore patch rather than the built in Lua hiscore then the hiscore.dat file you want is this one.
Quote
Click To download the old format hiscore.dat (pre mame v0174)

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1166 on: July 27, 2016, 11:21:54 pm »
hi_176.txt Patches, Compiles & Appears to run ok, But not sure if what I have done is correct. (MKChamp?)
thanks, ozfalcon!
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1167 on: July 28, 2016, 12:50:54 am »
hi_176.txt doesn't compile for me. i have these errors:

Code: [Select]
Compiling src/emu/machine.cpp...
../../../../../src/emu/machine.cpp: In member function 'int running_machine::run(bool)':
../../../../../src/emu/machine.cpp:316:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]

     if (! options().disable_hiscore_patch())
     ^~
../../../../../src/emu/machine.cpp:322:3: note: ...this statement, but the latter is misleadingly indented as if it
is guarded by the 'if'
   m_save.allow_registration(false);
   ^~~~~~
cc1plus.exe: all warnings being treated as errors
emu.make:1021: recipe for target '../../../../mingw-gcc/obj/x64/Release/src/emu/machine.o' failed
make[2]: *** [../../../../mingw-gcc/obj/x64/Release/src/emu/machine.o] Error 1
makefile:70: recipe for target 'emu' failed
make[1]: *** [emu] Error 2
makefile:959: recipe for target 'windows_x64' failed
make: *** [windows_x64] Error 2
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1168 on: July 28, 2016, 09:29:38 am »
hi_176.txt doesn't compile for me. i have these errors:

Code: [Select]
[-Werror=misleading-indentation]
cc1plus.exe: all warnings being treated as errors

Thats odd it doesn't show any warning under Linux.

Try compiling with the -nowerror flag as a workaround.
« Last Edit: July 28, 2016, 09:53:01 am by ozfalcon »

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1169 on: July 28, 2016, 09:48:37 am »
The warning is about text indent formatting.
This patch has some spaces replaced with tabs to correct the indenting.

It should compile without warning now.....
« Last Edit: July 28, 2016, 09:54:25 am by ozfalcon »

MKChamp

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 502
  • Last login:February 07, 2024, 02:45:53 pm
  • Stil around.
Re: hiscore diff (with no nag/white box removal)
« Reply #1170 on: July 28, 2016, 11:42:25 am »
The warning is about text indent formatting.
This patch has some spaces replaced with tabs to correct the indenting.

It should compile without warning now.....

Uploaded this to the front page. Thanks again!

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1171 on: July 28, 2016, 12:45:28 pm »
The warning is about text indent formatting.
This patch has some spaces replaced with tabs to correct the indenting.

It should compile without warning now.....
thanks a lot! compiles fine now.
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1172 on: August 31, 2016, 08:38:04 am »
New HiScore patch available.
Compiled & Tested on Linux 32bit system.
« Last Edit: August 31, 2016, 10:32:42 am by ozfalcon »

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1173 on: August 31, 2016, 09:56:37 am »
hi_177.txt compiled fine. thanks, ozfalcon!
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

MKChamp

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 502
  • Last login:February 07, 2024, 02:45:53 pm
  • Stil around.
Re: hiscore diff (with no nag/white box removal)
« Reply #1174 on: August 31, 2016, 11:34:08 am »
Added 177 to the front page. Thanks ozfalcon!!

headkaze

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 2943
  • Last login:August 14, 2023, 02:00:48 am
  • 0x2b|~0x2b?
Re: hiscore diff (with no nag/white box removal)
« Reply #1175 on: September 01, 2016, 06:05:31 am »
Can anyone confirm these new patches made on linux work in the latest Mame Compiler 64?

I recently added "EOL Conversion" and "Prefix Strip" options which should allow them to work.

DrakeTungsten

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 287
  • Last login:August 14, 2022, 06:36:45 pm
  • I effed with the wrong person!
    • No Quarter - a basic FE, WIP
Re: hiscore diff (with no nag/white box removal)
« Reply #1176 on: September 04, 2016, 07:47:40 am »
Edit- Ignore this post (I can't find a delete button). I found that Headkaze does provide a custom compiler.

Can anyone confirm these new patches made on linux work in the latest Mame Compiler 64?

I recently added "EOL Conversion" and "Prefix Strip" options which should allow them to work.
There's a Linux compiler just for Mame? I applied the .177 patch to Mame .177 and it compiled fine on Xubuntu 64-bit using whatever version of gcc/g++ came on it, if that helps.
« Last Edit: September 04, 2016, 07:53:15 am by DrakeTungsten »
No Quarter - a basic FE, WIP

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1177 on: September 28, 2016, 03:02:45 am »
hi_177.txt doesn't work with 0.178 source tree.
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1178 on: September 28, 2016, 10:01:12 am »
New HiScore patch available.
Fixed to apply to Mame 0.178
Someone will need to check compile/operation.

Note: As I have transitioned to Lua Hi Score support (From 0178 onward),
This will be the last revision of "HiScore" to be supported by me on a regular basis.



« Last Edit: September 28, 2016, 10:09:23 am by ozfalcon »

MKChamp

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 502
  • Last login:February 07, 2024, 02:45:53 pm
  • Stil around.
Re: hiscore diff (with no nag/white box removal)
« Reply #1179 on: September 28, 2016, 12:04:13 pm »
Patch uploading to main page...

Thanks again ozfalcon. I believe I am moving on to LUA support, as well. I won't be supporting this either. It's been a fun 9 years...my, how time flies!

Thanks to abelenki for hosting!!

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1180 on: September 28, 2016, 05:06:01 pm »
hi_178.txt works fine. thanks, ozfalcon!
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

wolfi

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 22
  • Last login:January 13, 2024, 07:00:36 am
  • I'm a llama!
Re: hiscore diff (with no nag/white box removal)
« Reply #1181 on: September 29, 2016, 10:46:20 am »
I believe I am moving on to LUA support, as well. I won't be supporting this either. It's been a fun 9 years...my, how time flies!

thanks for all your support!

I wonder if there is also a nonag lua script available?

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Suppression Patch
« Reply #1182 on: October 27, 2016, 11:19:30 pm »
Current hiscore patch fails to compile on Mame 0179 with numerous errors that require fixing.
Lua Hiscore is actively supported by Mame Dev and is the current method for Hi Score Loading & Saving.

For Lua Hiscore Discussions & Support visit typical Mame related forums.
http://forum.arcadecontrols.com/index.php/board,3.0.html
http://forums.bannister.org/ubbthreads.php?ubb=postlist&Board=1
http://forum.mamedev.org/

Here are the current standalone suppression patches for Mame 0.179

airix

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 7
  • Last login:October 28, 2016, 09:22:55 am
  • I want to build my own arcade controls!
Re: Suppression Patch
« Reply #1183 on: October 28, 2016, 09:22:52 am »
Current hiscore patch fails to compile on Mame 0179 with numerous errors that require fixing.
Lua Hiscore is actively supported by Mame Dev and is the current method for Hi Score Loading & Saving.

For Lua Hiscore Discussions & Support visit typical Mame related forums.
http://forum.arcadecontrols.com/index.php/board,3.0.html
http://forums.bannister.org/ubbthreads.php?ubb=postlist&Board=1
http://forum.mamedev.org/

Here are the current standalone suppression patches for Mame 0.179

Thanks ozfalcon!

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: Suppression Patch
« Reply #1184 on: October 30, 2016, 11:22:44 pm »
Here are the current standalone suppression patches for Mame 0.179
thanks, ozfalcon!

i decided, i'll be still keeping copies of up-to-date patches at:

http://mamestuff.lowtrucks.net/MKChamp/

MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

fleskebacon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 72
  • Last login:June 18, 2023, 03:29:46 am
Re: hiscore diff (with no nag/white box removal)
« Reply #1185 on: November 05, 2016, 05:17:57 pm »
I'm having a strange problem when compiling 0.179 for Windows x64. Everything works perfectly, but when I use the compiled file, exiting Mame gives me rubbish text output. I've tried compiling with numerous options, but it happens even when compiling without changing anything at all - installing fresh compile tools and untouched source files doesn't solve it. Never experienced this before, I think.

And this doesn't happen when using the pre-compiled version, so it boils down to being something that happens when I compile.

Anyone know what this is, and how to fix it? It's not a huge problem, as everything else seems to be working perfectly, but something obviously isn't right.

headkaze

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 2943
  • Last login:August 14, 2023, 02:00:48 am
  • 0x2b|~0x2b?
Re: hiscore diff (with no nag/white box removal)
« Reply #1186 on: November 05, 2016, 06:51:57 pm »
but when I use the compiled file, exiting Mame gives me rubbish text output.

I get the same issue but the random text output occurs when MAME is started. It's probably the same for you but you will only notice if you run MAME in windowed mode. How are you compiling MAME?

fleskebacon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 72
  • Last login:June 18, 2023, 03:29:46 am
Re: hiscore diff (with no nag/white box removal)
« Reply #1187 on: November 06, 2016, 05:32:45 am »
I get the same issue but the random text output occurs when MAME is started. It's probably the same for you but you will only notice if you run MAME in windowed mode. How are you compiling MAME?
That's probably true, never checked that way.

I use the compile tools from the mamedev site. Tried several different options, all give the same result. Tried both the untouched compiler tools, as well as updating them after installation.

Edit: It all compiles without errors, as far as I can see. I'll check again tonight and see if there are any warnings.
« Last Edit: November 06, 2016, 05:52:18 am by fleskebacon »

BGoulette

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 192
  • Last login:March 25, 2024, 05:19:40 pm
    • lazerjoose.com
Re: hiscore diff (with no nag/white box removal)
« Reply #1188 on: November 10, 2016, 03:03:08 pm »
I'm not sure what I'm doing wrong. I used the Mame Compiler 64 to compile 165 with no issues, but when trying to compile 179, nothing works. First when trying to apply the patch, I get "PatchDiff(): The system cannot find the file specified" (even though the Diff Patch File path is correct). Ignoring that, if I try to compile without the patch, I get "CompileMame(): The system cannot find the file specified" Under General Options, my paths look right: they're the defaults, and I've downloaded the MAME source and the build tools, etc. I've tried clean compile checked and unchecked and no love.

I'm sure I'm missing something simple, but I have no idea what it is. Any suggestions? (This is on Windows 10 running on an older i7.) Thanks!

plataoubuntu

  • Trade Count: (0)
  • Jr. Member
  • **
  • Offline Offline
  • Posts: 4
  • Last login:May 15, 2017, 04:53:27 pm
  • I want to build my own arcade controls!
Re: hiscore diff (with no nag/white box removal)
« Reply #1189 on: November 13, 2016, 11:31:56 am »
Hello friends!!

I made a video of how to compile the Mame in Ubuntu (updated) I hope it questions of help apra someone interested !!!


ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Suppression Patch
« Reply #1190 on: November 30, 2016, 07:14:46 am »

EMDB

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 865
  • Last login:September 05, 2023, 09:18:51 am
  • Project RetroCade
Re: Suppression Patch
« Reply #1191 on: November 30, 2016, 04:51:58 pm »
Question: is the new lua hiscore system compatible with the old patched version? In other words will my current hi-scores still be available once I switch to lua?

fleskebacon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 72
  • Last login:June 18, 2023, 03:29:46 am
Re: Suppression Patch
« Reply #1192 on: November 30, 2016, 05:06:14 pm »
Question: is the new lua hiscore system compatible with the old patched version? In other words will my current hi-scores still be available once I switch to lua?
Yes, it is compatible. :)

Edit: At least for the games I have tried, quite a lot.
« Last Edit: December 01, 2016, 08:01:16 am by fleskebacon »

EMDB

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 865
  • Last login:September 05, 2023, 09:18:51 am
  • Project RetroCade
Re: Suppression Patch
« Reply #1193 on: December 01, 2016, 04:05:56 pm »
Question: is the new lua hiscore system compatible with the old patched version? In other words will my current hi-scores still be available once I switch to lua?
Yes, it is compatible. :)

Edit: At least for the games I have tried, quite a lot.
How exactly does it work?

1) I downloaded and extracted mame0180b_64bit.exe. This contained a plugins folder with the hiscore lua script. 
2) I Launched mame64.exe and enabled the hiscore plugin.
3) I copied my previous hiscore.dat to the plugins\hiscore folder (there was already a hiscore.dat file there).
4) Then I launched mame64.exe with dkong for which I had hiscores in V0.177 with the hiscores patch. No hiscores showed up. I played a game and made a new hiscore. Exited mame and restarted: no hiscores

 ???

ozfalcon

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 156
  • Last login:April 07, 2022, 04:55:03 am
  • ZSystem
Re: hiscore diff (with no nag/white box removal)
« Reply #1194 on: December 01, 2016, 05:59:53 pm »
Please keep LUA HiScore how to discussions to a separate thread (Not this one).
So as not to confuse MKChamp HiScore discussions with LUA HiScore discussions.

Lua Hiscore is actively supported by Mame Dev and is the current method for Hi Score Loading & Saving.
For Lua Hiscore Discussions & Support please visit typical Mame related forums.
http://forum.arcadecontrols.com/index.php/board,3.0.html
http://forums.bannister.org/ubbthreads.php?ubb=postlist&Board=1
http://forum.mamedev.org/


EMDB

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 865
  • Last login:September 05, 2023, 09:18:51 am
  • Project RetroCade
Re: hiscore diff (with no nag/white box removal)
« Reply #1195 on: December 02, 2016, 01:29:02 am »
Please keep LUA HiScore how to discussions to a separate thread (Not this one).
So as not to confuse MKChamp HiScore discussions with LUA HiScore discussions.

Lua Hiscore is actively supported by Mame Dev and is the current method for Hi Score Loading & Saving.
For Lua Hiscore Discussions & Support please visit typical Mame related forums.
http://forum.arcadecontrols.com/index.php/board,3.0.html
http://forums.bannister.org/ubbthreads.php?ubb=postlist&Board=1
http://forum.mamedev.org/
If this is not the place to talk about the lua hiscore plugin and the nonag patches are not uploaded to the first post this thread has no use and should be removed as it might confuse users. I would propose to rename it and add a tutorial on converting to lua hiscores and add the suppression patches  :applaud:

Jumpstile

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 29
  • Last login:January 05, 2021, 11:59:18 pm
Re: hiscore diff (with no nag/white box removal)
« Reply #1196 on: December 02, 2016, 09:34:37 am »
I disagree. Keep this post here for historical purposes and use the new threads for LUA.


Sent from my iPhone using Tapatalk

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1197 on: December 04, 2016, 03:52:45 am »
thanks, ozfalcon!
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

abelenki

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 131
  • Last login:December 21, 2022, 06:58:00 pm
    • MAME Stuff
Re: hiscore diff (with no nag/white box removal)
« Reply #1198 on: December 27, 2016, 09:28:03 pm »
suppression_0180u0.txt works fine with 0.181 source tree.
MAME Stuff | MAME favorites | Bubble Bobble Series chart / wiki | PC configuration

Stiletto

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 50
  • Last login:September 27, 2022, 11:41:36 pm
  • MAME me.
Re: hiscore diff (with no nag/white box removal)
« Reply #1199 on: January 09, 2017, 06:04:55 pm »
I too would also like to recommend that the thread be renamed in some fashion.