[Flightgear-devel] Unknown IO option

2005-04-12 Thread Luuk van Hal
I'm trying to add an IO option to FlightGear v.0.9.8 for communication through ethernet-udp with another program, like --native=params. It's called rh_flight with --rh_flight=socket,out,60,127.0.0.1,udp as parameters but when I start FG with fgfs --rh_flight=socket, it says Unknown option

Re: [Flightgear-devel] Unknown IO option

2005-04-12 Thread Erik Hofman
Luuk van Hal wrote: I'm trying to add an IO option to FlightGear v.0.9.8 for communication through ethernet-udp with another program, like --native=params. It's called rh_flight with --rh_flight=socket,out,60,127.0.0.1,udp as parameters but when I start FG with fgfs --rh_flight=socket, it

Re: [Flightgear-devel] Unknown IO option

2005-04-12 Thread Curtis L. Olson
Luuk, Another thing to check: In options.cxx when you look for the --rh_flight= option, make sure you are counting the right number of characters ... if you copied from another else if clause, but that option was a different length, then you'll need to change the number of characters that are

Re: [Flightgear-devel] Unknown IO option

2005-04-12 Thread Frederic Bouvier
Quoting Curtis L. Olson: Luuk, Another thing to check: In options.cxx when you look for the --rh_flight= option, make sure you are counting the right number of characters ... if you copied from another else if clause, but that option was a different length, then you'll need to change the