private forward from David Frankland. didn't know how to post to the
list. I notified him, and told him I'd forward this.

-----BEGIN FORWARD-----

Sorry for replying personally, but I can't work out how to reply to the 
mailing list. Perhaps you'd like to forward this to others.

Anyway, I got around the gxmame "nohotrod" parameter problem by writing 
a small Perl xmame launcher that strips out the bad parameters. You may 
need to put the full path info to xmame.x11, but this works for me
as-is:


#!/usr/bin/perl -w

my $arg;
my @args;
my $app = "xmame.x11";

while (defined($arg = shift))
{
        next if $arg eq "-nohotrod";
        next if $arg eq "-nohotrodse";
        push @args, ($arg);
}

system $app, @args;



-- 
David Frankland
[EMAIL PROTECTED]



_______________________________________________
Xmame mailing list
[EMAIL PROTECTED]
http://toybox.twisted.org.uk/mailman/listinfo/xmame

Reply via email to