[qwaq] Use own version of positional drawing in Window

Double offsetting the prints doesn't quite look right ;)
This commit is contained in:
Bill Currie 2020-03-06 17:46:36 +09:00
parent d0a249590c
commit 9a96a9b2c9

View file

@ -127,4 +127,19 @@
{
return [owner redraw];
}
- (void) mvprintf: (Point) pos, string fmt, ...
{
[textContext mvvprintf: pos, fmt, @args];
}
- (void) mvvprintf: (Point) pos, string fmt, @va_list args
{
[textContext mvvprintf: pos, fmt, args];
}
- (void) mvaddch: (Point) pos, int ch
{
[textContext mvaddch: pos, ch];
}
@end