From 652aa99bd5fddbb4ee878ddd65ac637a134dbcbc Mon Sep 17 00:00:00 2001 From: pixel Date: Tue, 13 Jul 2004 06:20:33 +0000 Subject: Fixed font bug + adding fixed font --- lib/texture.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/texture.cc') diff --git a/lib/texture.cc b/lib/texture.cc index 42c8f3f..40c02ac 100644 --- a/lib/texture.cc +++ b/lib/texture.cc @@ -130,7 +130,7 @@ inline static unsigned int nextpower(unsigned int n) { } } -mogltk::texture::texture(int x, int y, int w, int h) throw (GeneralException) : width(nextpower(w)), height(nextpower(h)), +mogltk::texture::texture(int x, int y, int w, int h) : width(nextpower(w)), height(nextpower(h)), texture_allocated(true), planar(false), tainted(false), taintable(false) { glGenTextures(1, &tex); glBindTexture(GL_TEXTURE_2D, tex); -- cgit v1.2.3