diff options
| author | Johannes Schickel | 2011-08-09 02:14:12 +0200 |
|---|---|---|
| committer | Johannes Schickel | 2011-08-09 02:14:12 +0200 |
| commit | 06b95b35439dca6a30afa9a823123343f4679feb (patch) | |
| tree | 96db22c0e0aad93e606c014606cb7f1737986c95 | |
| parent | ef695cb7dd17aaa24378c834a5ba5d78e6093792 (diff) | |
| download | scummvm-rg350-06b95b35439dca6a30afa9a823123343f4679feb.tar.gz scummvm-rg350-06b95b35439dca6a30afa9a823123343f4679feb.tar.bz2 scummvm-rg350-06b95b35439dca6a30afa9a823123343f4679feb.zip | |
OPENGL: Add include guard to gltexture.h
| -rw-r--r-- | backends/graphics/opengl/gltexture.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/graphics/opengl/gltexture.h b/backends/graphics/opengl/gltexture.h index 3e04949c8c..2f0bef2bbf 100644 --- a/backends/graphics/opengl/gltexture.h +++ b/backends/graphics/opengl/gltexture.h @@ -20,6 +20,9 @@ * */ +#ifndef BACKENDS_GRAPHICS_OPENGL_GLTEXTURE_H +#define BACKENDS_GRAPHICS_OPENGL_GLTEXTURE_H + #include "common/scummsys.h" #ifdef WIN32 @@ -116,3 +119,5 @@ protected: GLint _filter; bool _refresh; }; + +#endif |
