mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qwaq] Use own version of positional drawing in Window
Double offsetting the prints doesn't quite look right ;)
This commit is contained in:
parent
d0a249590c
commit
9a96a9b2c9
1 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue