summaryrefslogtreecommitdiff
path: root/lib/glbase.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/glbase.cc')
-rw-r--r--lib/glbase.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/glbase.cc b/lib/glbase.cc
index 2edeec5..89b849a 100644
--- a/lib/glbase.cc
+++ b/lib/glbase.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glbase.cc,v 1.22 2004-11-27 21:48:03 pixel Exp $ */
+/* $Id: glbase.cc,v 1.23 2006-02-02 17:29:05 pixel Exp $ */
#include <stdio.h>
#include <SDL.h>
@@ -224,6 +224,7 @@ mogltk::texture * mogltk::glbase::GrabTexture() {
int w = nextpower(GetWidth());
int h = nextpower(GetHeight());
texture * r = new texture(w, h);
+ r->name = "Texture grabbed.";
SDL_Surface * t;
t = GrabSurface();