Skip to content

Commit

Permalink
Slightly improve lynx graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrizio-Caruso committed Oct 10, 2019
1 parent 9ce3ab9 commit 96eb20f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cross_lib/display/graphics_mode/tgi_graphics.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@
chString[0] = image->_imageData; \
chString[1]='\0'; \
tgi_setcolor(image->_color); \
tgi_setbgcolor(TGI_COLOR_BLACK); \
tgi_outtextxy((x*8),(y*8),chString); \
tgi_setbgcolor(TGI_COLOR_GREY); \
}


#define __DELETE(x,y) \
{ \
tgi_setbgcolor(TGI_COLOR_GREY); \
tgi_outtextxy((x*8),(y*8)," "); \
tgi_setbgcolor(TGI_COLOR_BLACK); \
}

#endif // _TGI_GRAPHICS

0 comments on commit 96eb20f

Please sign in to comment.