summaryrefslogtreecommitdiff
path: root/lib/base.cc
diff options
context:
space:
mode:
authorpixel <pixel>2003-12-22 23:58:23 +0000
committerpixel <pixel>2003-12-22 23:58:23 +0000
commitaa73772b1c58fed81f22972f4a22b4fbfa8e3ce2 (patch)
treed4a1a4090ac997162ddfd9215d43b01a5a61a9e7 /lib/base.cc
parent8c80d85f8f61f649767cc936cccbc44572d9693d (diff)
Whoops, bug fix
Diffstat (limited to 'lib/base.cc')
-rw-r--r--lib/base.cc2
1 files changed, 1 insertions, 1 deletions
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;