Talk about a DUHH moment, I had one! Apparently while testing my ability to load images I took out the default value for the image wrapper used by the HUD. Quick fix, put it back in. Of course, no one saw this when running in the IDE as it was passing the image name (test2.png) as a parameter and loading it properly (oops).

Fixed now, download location is the same. Should be able to extract and re-run with no problems. Really need to get that logging stuff put back into place

- Jeremy

PS: Does anyone know a way to make a class method that still has class visibility? IE:
Code:
type
 TMyClass=Class
  class function test : TObject;
 end;

class function TMyClass.test : TObject;
begin
 if(assigned(self))then
  result := self
 else
  result := TMyClass.Create;
end;
And no, that's not what I'm trying to do, but singleton's make for a good example