mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 10:36:44 +00:00
Bugfix width being offset by 1
This commit is contained in:
parent
12272f13ab
commit
dd1834ad2b
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ internal class Term : IComponent
|
|||
L.ArgumentError(2, "number must be greater than 0");
|
||||
}
|
||||
|
||||
SetSize(w, h);
|
||||
SetSize(w - 1, h);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue