On Fri, 21 Feb 2003, Alfredo Braunstein wrote: > 1) I'm still investigating how to solve the startup problem. (images get > loaded in reverse order). Clues welcomed.
A 20 second scan of the code in LoadQueue.C suggests that push_front() and pop_front() is the reason your queue is acting like a stack. Try pushing on one end and popping off the other. Allan. (ARRae)