I had this problem too. make sure xmame_semimajor_version in your
mame_cache.py matches the following. The result=int(95) is the most
important part, the 95 = xmame 0.95:
def xmame_semimajor_version( mame_cmd ) :
try:
verinfo = os.popen(mame_cmd + ' --version', 'r')
except:
print 'Unable to get mame version.'
return FALSE
this_re = re.compile( ".*version\s+(\d+)\.(\d+)\.(\d+)\s+" )
for line in verinfo.readlines() :
if this_re.match( line ) :
result = int( this_re.match( line ).group( 2 ) )
result = int(95)
verinfo.close()
return result
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users