graphics

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit caf082b29e4a91f7ba5cdca92945403e93a6cae7
parent a9c9a3dbfda44c1095753aa8fabaaf550fe80384
Author: Brian Swetland <swetland@frotz.net>
Date:   Tue,  2 Jul 2013 15:16:40 -0700

textgrid: not actually off by one, revert...

Diffstat:
Mcommon/textgrid.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/textgrid.cc b/common/textgrid.cc @@ -84,7 +84,7 @@ int TextGrid::init(App *a, int w, int h) { return -1; - cb.proj.setOrtho(0, w - 1, 0, h - 1, -1, 1); + cb.proj.setOrtho(0, w, 0, h, -1, 1); cb.cw = width; cb.ch = height;