X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fprojection.cpp;h=3a8baf84af3f492925366702b434a46a75e6a478;hb=982005bfbccb429767d0676bd840caf1118c9e21;hp=1b7fa61f11a4389d8799387df6e060fadb3b2188;hpb=bdf2568e247af858c4a1ca8004d97f13fe9b8cb0;p=libs%2Fgl.git diff --git a/source/projection.cpp b/source/projection.cpp index 1b7fa61f..3a8baf84 100644 --- a/source/projection.cpp +++ b/source/projection.cpp @@ -29,7 +29,7 @@ void ortho_bottomleft(double width, double height) void ortho_topleft(double width, double height) { - ortho(0, width, -height, 0, 0, 1); + ortho(0, width, height, 0, 0, 1); } void frustum(double left, double right, double bottom, double top, double near, double far)