[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Gnash] new help
From: |
Martin Guy |
Subject: |
Re: [Gnash] new help |
Date: |
Wed, 11 Oct 2006 18:47:23 +0100 |
> > - plugins.cpp line 685
15 is correct if you count them, or rather 13+(pageurl?2:0) to be pernickety.
BTW I would have thought that
argv[argc++] = "-r 3";
should be
argv[argc++] = "-r3";
or
argv[argc++] = "-r";
argv[argc++] = "3";
If it works, then I guess where it's parsed in gnash.cpp,
case 'r':
{
long int render_arg = strtol(optarg, NULL, 0);
strtol lets you get away with it, but I wouldn't want to count on the
being portable.
The final assertion is there to catch coding errors.
And just as well!
M