3CNEV3PPTIGB2NHAASESKWJMAZ37OUGYQ43IWYNBPZZYJNGM4UPAC SLMZ2H7QMJ5GM3T3MQ2XTROZKYREU2RC54DVQC7Q3CMS7ESQDEBAC CQYZ6YKOSE63F2VLBGEGOVL2AUHFK6MV6B5S4FLFT22EBUDVC42QC MEINLCTPD74BWPDTPU6HWMGOZGCQRSEVTZBUBXJTYJ2XIHJZP4VAC R5QXEHUIZLELJGGCZAE7ATNS3CLRJ7JFRENMGH4XXH24C5WABZDQC JOPVPUSAMMU6RFVDQR4NJC4GNNUFB7GPKVH7OS5FKCYS5QZ53VLQC 76XOJEND6OWBWA7V6YXTQV2NP5SVVMLVZCCINBWKOBJARSUWNJJQC AVTNUQYRBW7IX2YQ3KDLVQ23RGW3BAKTAE7P73ASBYNKOHMQMH5AC OTIBCAUJ3KDQJLVDN3A536DLZGNRYMGJLORZVR3WLCGXGO6UGO6AC KHPSHJN4BMTJ3CHUFQQZU7ZIQDOQDF3L5HV3TRT5OJMYICJAEB5QC GBSRQUT4QF5WCFVSTGSOU3BM6VCGPNBBG5WKDEGDGGCOUWTPEC2AC 6EFO6DIWS7PVTWPGZ6X4EWAFAK5KFBLM67AWASAEQD3RPXKRGMDAC 7AI33WIR6M4LFX7E7ZMYQMNDI6NLJ7EENSWAXFYVVZBG5H7JFWCQC IUEXDMNY2SHC5E6QSDDPE2BDDDY552223V2ZKIATUZ6IWTXRIXKQC KKMFQDR43ZWVCDRHQLWWX3FCWCFA3ZSXYOBRJNPHUQZR2XPKWULAC TXDMRA5JEAML2GF5QY4ATU22G3NI7DQWPGO4U5OZNP7NGK4JT6WQC 45M45UKDNRXCRRF3UC6AO7FNSFF4TPNOPUACKQYGC7YESX57G6HAC IM6GSGVZTVICWIBWRCUXLIMXT3XE3H5LKJ3AITUA4AB3FTW5AJUAC CLSA2LMMLFUGI4NM3ZP5WVVASQYWV5BK76URXQHVSB7QEAAKUNLAC if Version == '12.0' then-- HACK: Maybe v12.0 uses a different font? Strange that it only causes-- issues in a couple of places.-- We'll need to rethink our tests if issues like this start to multiply.App.screen.check(y, 'mno ', 'screen:3')elseApp.screen.check(y, 'mn', 'screen:3')endedit.run_after_mouse_release(Editor_state, Editor_state.left+2,Editor_state.top+Editor_state.line_height*2+5, 1)check_eq(Editor_state.cursor1.pos, 25, 'cursor:pos')endfunction test_backspace_can_scroll_up()-- cursor should moveendfunction test_pagedown_never_moves_up()
if Mode == 'version_check' thenlove.graphics.setColor(1,1,0)love.graphics.rectangle('fill', 30,30, 400,400)love.graphics.setColor(0,0,0)love.graphics.printf(("This app doesn't support version %s; please use version %s. Press any key to try it with this version anyway."):format(Version, Supported_versions[1]), 40,40, 400)returnendedit.draw(Editor_state)
if Current_app == 'error' thenlove.graphics.setColor(0,0,1)love.graphics.rectangle('fill', 0,0, App.screen.width, App.screen.height)love.graphics.setColor(1,1,1)love.graphics.printf(Error_message, 40,40, 600)elseif Current_app == 'run' thenrun.draw()elseif Current_app == 'source' thensource.draw()elseassert(false, 'unknown app "'..Current_app..'"')end