[Scummvm-cvs-logs] scummvm master -> 06b95b35439dca6a30afa9a823123343f4679feb

lordhoto lordhoto at gmail.com
Tue Aug 9 02:24:47 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
06b95b3543 OPENGL: Add include guard to gltexture.h


Commit: 06b95b35439dca6a30afa9a823123343f4679feb
    https://github.com/scummvm/scummvm/commit/06b95b35439dca6a30afa9a823123343f4679feb
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2011-08-08T17:14:12-07:00

Commit Message:
OPENGL: Add include guard to gltexture.h

Changed paths:
    backends/graphics/opengl/gltexture.h



diff --git a/backends/graphics/opengl/gltexture.h b/backends/graphics/opengl/gltexture.h
index 3e04949..2f0bef2 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






More information about the Scummvm-git-logs mailing list