POV-Ray : Newsgroups : povray.windows : /nogui ? : Re: /nogui ? Server Time
5 Jul 2024 06:52:52 EDT (-0400)
  Re: /nogui ?  
From: Elias Pschernig
Date: 3 Jul 2001 20:53:07
Message: <3b4268f3@news.povray.org>
> 
> It wouldn't be a problem if i could find where to turn it off in the
> source code.
> 

I'm quite sure it is here in userio.c:

void POV_Std_Display_Finished()
{
  char s[3];

  fprintf(stderr, "\007\007");
  if (opts.Options & PROMPTEXIT)
  {
    fgets(s, 2, stdin);
  }
}

Trying grep with \b and \007 showed it up quite fast..

Btw., do you think it would be hard recompiling it with mingw ?


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.