I can't replicate this
SetErrorMode(2)
// set window properties
SetWindowTitle( "bugs" )
SetWindowSize( 1024, 768, 0 )
SetWindowAllowResize( 1 )
SetSyncRate(20,0)
UseNewDefaultFonts( 1 )
// set display properties
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
SetScissor(0,0,0,0)
SetClearColor( 101,120,154 )
CreateText( 1, "A) Carbine: A short rifle with a tube magazine." )
CreateText( 2, "B) Shirt: Something to cover your chest." )
SetTextPosition( 1, 10, 100 )
SetTextPosition( 2, 10, 120 )
SetTextSize( 1, 20 )
SetTextSize( 2, 20 )
do
Sync()
loop