From c0108c1022ede4743247081f408ca7780095e520 Mon Sep 17 00:00:00 2001 From: pixel Date: Mon, 7 Apr 2003 22:44:33 +0000 Subject: Strange bugs... --- lib/base.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/base.cc') diff --git a/lib/base.cc b/lib/base.cc index 310dde3..8c1c862 100644 --- a/lib/base.cc +++ b/lib/base.cc @@ -28,7 +28,7 @@ mogltk::base::base(int w, int h, int flags) throw(GeneralException) : surface(0) printm(M_INFO, "Video resolution: %dx%dx%d (ratio = %3.2f)\n", surface->w, surface->h, surface->format->BitsPerPixel, ratio); - SDL_ShowCursor(0); + SDL_ShowCursor(SDL_DISABLE); SDL_FillRect(surface, NULL, 0); SDL_Flip(surface); SDL_FillRect(surface, NULL, 0); @@ -57,7 +57,7 @@ mogltk::base::base(int w, int h, int flags, int) : surface(0) { width = w; height = h; - SDL_ShowCursor(0); + SDL_ShowCursor(SDL_DISABLE); } void mogltk::base::setsurface(SDL_Surface * _surface) throw (GeneralException) { -- cgit v1.2.3