mirror of
https://github.com/jscrane/r65emu.git
synced 2025-03-12 03:34:22 +00:00
rp2040 drawString() bugfix
This commit is contained in:
parent
9690ffb019
commit
9da8a503a2
@ -347,7 +347,7 @@ void Display::drawString(const char *s, unsigned x, unsigned y, colour_t c) {
|
||||
#elif defined(USE_DVI)
|
||||
dvi.setTextColor(col(c));
|
||||
dvi.setCursor(x, y);
|
||||
dvi.fillRect(x, y, x+_cx*strlen(s), y+_cy, _bg);
|
||||
dvi.fillRect(x, y, _cx*strlen(s), _cy, _bg);
|
||||
dvi.print(s);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user