gentoo-full-overlay/games-puzzle/fbg/files/fbg-0.9-missing-return.patch

8 lines
280 B
Diff

Lack of return leads to segmentation fault on startup.
https://bugs.gentoo.org/815259
--- a/src/glTGAImage.cc
+++ b/src/glTGAImage.cc
@@ -180,2 +180,3 @@
glTexImage2D(GL_TEXTURE_2D, 0, type, getWidth(), getHeight(), 0, type, GL_UNSIGNED_BYTE, getImageData());
+ return true;
}