[12 Aug 2006] Fullscreen Mode and DebugPrint

Contains all messages from the Hollywood mailing list between 01/2006 and 08/2012
Locked
NathanH
Posts: 128
Joined: Sun Jul 05, 2015 1:29 am
Location: Caldwell, Idaho

[12 Aug 2006] Fullscreen Mode and DebugPrint

Post by NathanH »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Sat, 12 Aug 2006 02:28:56 -0600

Hi,

I'm having problems working in fullscreen mode in conjunction with the debugprint command. When I hit 'escape' after running the following code to check out the debug window the screen doesn't close to send me back to workbench. If I do a ctl-c to quit after trying 'escape' the screen does close to take me back to workbench but the debug output window is filled with strange characters. Am I using some incompatible options or something? Thanks for the help.

Nathan

Code: Select all

@display {Color=#BLACK, width=1024, height=768, mode="FULLSCREEN", Borderless=true, Fixed=true}

debugprint("test")

escapequit=true
repeat
    waitevent
forever
User avatar
airsoftsoftwair
Posts: 5830
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

[12 Aug 2006] Re: Fullscreen Mode and DebugPrint

Post by airsoftsoftwair »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Sat, 12 Aug 2006 23:21:20 +0200
Hi,

I'm having problems working in fullscreen mode in conjunction with the debugprint command. When I hit 'escape' after running the following code to check out the debug window the screen doesn't close to send me back to workbench. If I do a ctl-c to quit after trying 'escape' the screen does close to take me back to workbench but the debug output window is filled with strange characters. Am I using some incompatible options or something? Thanks for the help.

Nathan

Code: Select all

@display {Color=#BLACK, width=1024, height=768, mode="FULLSCREEN",
Borderless=true, Fixed=true}

debugprint("test")

escapequit=true
Here's the mistake in your code. You're just setting a variable called 'escapequit' to TRUE, but you must call the function in order to enable esc quit. Use

EscapeQuit(True)

instead.
NathanH
Posts: 128
Joined: Sun Jul 05, 2015 1:29 am
Location: Caldwell, Idaho

[14 Aug 2006] Re: Fullscreen Mode and DebugPrint

Post by NathanH »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Mon, 14 Aug 2006 17:41:22 -0600

Oops, thanks for the catch!
Locked