plugins/hiscore: Fixed detection of software item lines, and added high score support for Mega Drive Sonic Spinball. (#11282)

This commit is contained in:
GregWeil 2023-07-06 15:49:56 -04:00 committed by GitHub
parent 5616a6476a
commit 93771fee59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -12292,6 +12292,11 @@ logicpr2:
;@s:sega/mdconsole.cpp
genesis,sspinu:
megadriv,sspin:
megadrij,sspinj:
@:maincpu,program,fff8da,1e,ff,c8
genesis,tf3:
@:maincpu,program,fff2ac,4,00,90

View File

@ -175,7 +175,7 @@ function hiscore.startplugin()
end
elseif string.find(line, rm_match) then --- match this game
current_is_match = true;
elseif string.find(line, '^[a-z0-9_]+:') then --- some game
elseif string.find(line, '^[a-z0-9_,]+:') then --- some game
if current_is_match and string.len(cluster) > 0 then
break; -- we're done
end