1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 07:25:53 +00:00
QB64-PE/internal/help/_AUTODISPLAY.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

17 lines
719 B
Plaintext

The {{KW|_AUTODISPLAY}} statement enables the automatic display of the screen image changes previously disabled by {{KW|_DISPLAY}}.
{{PageSyntax}}
:&lt;code&gt;{{KW|_AUTODISPLAY}}&lt;/code&gt;
{{PageDescription}}
* {{KW|_AUTODISPLAY}} is on by default and displays the screen at around 30 frames per second (normal vertical retrace speed).
* {{KW|_DISPLAY}} disables automatic graphic displays, but it also eliminates having to use PCOPY or page flipping when used correctly. Placing _DISPLAY after screen draws or other screen changes assures completion of the changes before they are displayed. The speed of QB64 code execution makes this a viable option.
{{PageSeeAlso}}
* {{KW|_DISPLAY}}
{{PageNavigation}}