fade out console
[supertux.git] / src / physfs / physfs_sdl.cpp
index 0afcda8..d52da63 100644 (file)
@@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #include <iostream>
 
 #include <assert.h>
-#include "msg.hpp"
+#include "log.hpp"
 
 static int funcSeek(struct SDL_RWops* context, int offset, int whence)
 {
@@ -48,7 +48,7 @@ static int funcSeek(struct SDL_RWops* context, int offset, int whence)
             break;
     }
     if(res == 0) {
-        msg_warning << "Error seeking in file: " << PHYSFS_getLastError() << std::endl;
+        log_warning << "Error seeking in file: " << PHYSFS_getLastError() << std::endl;
         return -1;
     }