Browse Source

Fix typo

pull/130/head
Adam Johnson 5 years ago
parent
commit
1234d548a1
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 2
      korman/korlib/texture.py

2
korman/korlib/texture.py

@ -171,7 +171,7 @@ class GLTexture:
# Scale, if needed...
if oWidth != eWidth or oHeight != eHeight:
buf = _scale_image(self._image_data, oWidth, oHeight, eWidth, eHeight)
buf = scale_image(self._image_data, oWidth, oHeight, eWidth, eHeight)
else:
buf = self._image_data

Loading…
Cancel
Save