Minor cleanup.

This commit is contained in:
Themaister 2012-01-07 11:47:53 +01:00
parent 1953ea7312
commit f2a152f7c9

4
file.c
View File

@ -937,9 +937,7 @@ bool path_is_directory(const char *path)
{
#ifdef _WIN32
return GetFileAttributes(path) == FILE_ATTRIBUTE_DIRECTORY;
#elif defined(__CELLOS_LV2__)
return false; // STUB
#elif defined(XENON)
#elif defined(__CELLOS_LV2__) || defined(XENON)
// Dummy
(void)path;
return false;