mikymod 12 лет назад
Родитель
Сommit
87f0f09c96
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      engine/core/filesystem/Filesystem.cpp

+ 1 - 2
engine/core/filesystem/Filesystem.cpp

@@ -141,7 +141,7 @@ const char* Filesystem::os_path(const char* mount_point, const char* relative_pa
 
 	if (mp)
 	{
-		return ((DiskMountPoint*)mp)->os_path(relative_path);
+		return mp->os_path(relative_path);
 	}
 
 	return NULL;
@@ -158,7 +158,6 @@ MountPoint*	Filesystem::find_mount_point(const char* mount_point)
 	{
 		if (curr->type() == type_hash)
 		{
-			Log::d("Android mount point found!");
 			return curr;
 		}