Re: Cuny's Text GUI minor cosmetic bug
- Posted by Robert Craig <rds at EMAIL.MSN.COM> Dec 30, 1997
- 790 views
David Cuny writes: > So if the Euphoria > program that you've shelled to changes the screen resolution, > the calling Euphoria program is unable to detect the change, > and thus incorrectly reports the current screen mode. That's true. It's due to something in WATCOM's graphics library. I can't easily fix it. That's why system() has a second argument that allows you to restore your original graphics mode after running a program that might change the mode. To avoid problems, system("xxx", 0) or system("xxx", 1) should be used whenever xxx might possibly change the graphics mode. If you are sure that xxx will not change the mode then use system("xxx", 2). Regards, Rob Craig Rapid Deployment Software