From: Ricardo Cruz Date: Sat, 1 May 2004 11:00:54 +0000 (+0000) Subject: Fixed naming. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=1f5a17c17996f697b5d22c0a2bc0c2f2036fa14c;p=supertux.git Fixed naming. SVN-Revision: 884 --- diff --git a/src/screen.cpp b/src/screen.cpp index bf9eb895b..18e84892e 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -105,7 +105,7 @@ void fade(Surface *surface, int seconds, bool fade_out); void fade(const std::string& surface, int seconds, bool fade_out) { Surface* sur = new Surface(datadir + surface, IGNORE_ALPHA); -black_fade(sur, seconds, fade_out); +fade(sur, seconds, fade_out); delete sur; }