summaryrefslogtreecommitdiff
path: root/2d/texture.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@member.fsf.org>2013-08-26 22:09:45 -0400
committerDavid Thompson <dthompson@member.fsf.org>2013-08-26 22:09:45 -0400
commit95d31ad231800026e7b0a44ddda42c584dad5671 (patch)
treed76e718c37f3ee40fc1737d1fb58eef7717ff847 /2d/texture.scm
parentcaec8d997059507b9a3eef497ad0508a2c6073d9 (diff)
Make the origin the top-left corner of the window again.
Diffstat (limited to '2d/texture.scm')
-rw-r--r--2d/texture.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/2d/texture.scm b/2d/texture.scm
index 19c26c8..8df5e51 100644
--- a/2d/texture.scm
+++ b/2d/texture.scm
@@ -141,6 +141,8 @@
(bitmap (freeimage-load image-type filename))
(32bit-bitmap (freeimage-convert-to-32-bits bitmap)))
(freeimage-unload bitmap)
+ ;; Need to flip because y-axis is reversed.
+ (freeimage-flip-vertical 32bit-bitmap)
32bit-bitmap))
(define (load-texture filename)