delete another arg that can be deduced

[?]
May 19, 2022, 12:44 PM
B3IWYWSRDSZ7AG5HDS3TELNTG2IKRZYPI25B6LJGVFAJYTHVXZZAC

Dependencies

  • [2] DLQMM265 scroll past first page
  • [3] YJGADSGK delete unused arg
  • [4] BULPIBEG beginnings of a module for the text editor
  • [5] XX7G2FFJ intermingle freehand line drawings with text
  • [6] XNFTJHC4 split keyboard handling between Text and Drawing
  • [*] OTIBCAUJ love2d scaffold

Change contents

  • replacement in text.lua at line 6
    [3.44][3.44:109]()
    function Text.draw(line, line_index, cursor_line, y, cursor_pos)
    [3.44]
    [3.109]
    function Text.draw(line, line_index, cursor_line, cursor_pos)
  • replacement in text.lua at line 9
    [3.219][3.219:266]()
    love.graphics.draw(love_text, 25,y, 0, Zoom)
    [3.219]
    [3.266]
    love.graphics.draw(love_text, 25,line.y, 0, Zoom)
  • replacement in text.lua at line 12
    [3.316][3.316:458]()
    love.graphics.print('_', Text.cursor_x(line.data, cursor_pos), y+6) -- drop the cursor down a bit to account for the increased font size
    [3.316]
    [3.31]
    love.graphics.print('_', Text.cursor_x(line.data, cursor_pos), line.y+6) -- drop the cursor down a bit to account for the increased font size
  • replacement in main.lua at line 133
    [2.1510][2.1510:1574]()
    Text.draw(line, line_index, Cursor_line, y, Cursor_pos)
    [2.1510]
    [2.1574]
    Text.draw(line, line_index, Cursor_line, Cursor_pos)