@pauldemint, I strongly suggest that you edit your post with the code as requested earlier, select all code and click the </> button to apply code tags and next save your post. It makes it easier to read, easier to copy and prevents the forum software from incorrect interpretation of the code (e.g. extern uint8_t SmallFont[] does not change to extern uint8_t SmallFont[]).
Now to your problem
Remove the UTFT library from C:\Program Files (x86)\Arduino\libraries\UTFT, it does not belong there. It will cleanout the errors/warnings.
I've downloaded the Rinky-Dink Library: UTFT (I hope it's the correct one, if not, please post a link) and used menu sketch -> include library -> add zip library.
Next I compiled your sketch and got errors relating to il.66. So I took the example that came with the library and it compiles with a few warnings.
A bit more analysis
Your code contains e.g. myGLCD.drawLine(798, i, 810 - (i1.66), 463);, the Rinky-Dink code contains myGLCD.drawLine(798, i, 810-(i*1.66), 463);.
Conclusion:
- Your code is corrupt (for whatever reason).
//Edit: I now realise that that might be because you did not use code tags and the*has a special meaning for the forum software. - Base your code on the example that comes with the Rinky-Dink library.