From aa73772b1c58fed81f22972f4a22b4fbfa8e3ce2 Mon Sep 17 00:00:00 2001 From: pixel Date: Mon, 22 Dec 2003 23:58:23 +0000 Subject: Whoops, bug fix --- lib/base.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/base.cc') diff --git a/lib/base.cc b/lib/base.cc index 5282617..7a6c854 100644 --- a/lib/base.cc +++ b/lib/base.cc @@ -18,7 +18,7 @@ mogltk::base::base(int w, int h, int flags) throw(GeneralException) : surface(0) } if (!(surface = SDL_SetVideoMode(width, height, 0, flags))) { - throw GeneralException(String("Couldn't set GL mode: ") + SDL_GetError()); + throw GeneralException(String("Couldn't set SDL mode: ") + SDL_GetError()); } mogltk::engine::base_o = this; -- cgit v1.2.3