diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
commit | 08a006d08a4c35d2c3ecc9a3d10cf7fd14661a84 (patch) | |
tree | 0cfc4f0736babb895eb97a65c6defe632a0249c7 /games/pinball/files/patch-base__TextureUtil.cpp | |
parent | editors/fte: update to 20110708 (diff) |
Rename all patches that contain '::' as a path separator, and use
'__' instead.
Diffstat (limited to 'games/pinball/files/patch-base__TextureUtil.cpp')
-rw-r--r-- | games/pinball/files/patch-base__TextureUtil.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/games/pinball/files/patch-base__TextureUtil.cpp b/games/pinball/files/patch-base__TextureUtil.cpp new file mode 100644 index 000000000000..507c733c0f46 --- /dev/null +++ b/games/pinball/files/patch-base__TextureUtil.cpp @@ -0,0 +1,22 @@ +--- ./base/TextureUtil.cpp.orig Thu Nov 20 17:46:16 2003 ++++ ./base/TextureUtil.cpp Fri Dec 12 21:14:17 2003 +@@ -54,6 +54,7 @@ + + #if EM_USE_ALLEGRO + #include <allegro.h> ++#include <GL/gl.h> + BITMAP * backbuffer = NULL; + ZBUFFER * zbuffer = NULL; + #endif // EM_USE_ALLEGRO +@@ -333,9 +334,10 @@ + EmTexture * const texture) + { + //cout<<"+ Texture::genTexture : "<<filename<<endl; +- *texture = 0; + + #if EM_USE_SDL ++ *texture = 0; ++ + // Load Texture + struct_image* image = 0; + |