diff options
author | nephele <105942296+nephele-gh@users.noreply.github.com> | 2023-04-11 20:16:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 20:16:35 +0200 |
commit | 7a3fc62ada4001d5bb6c97ed26ec19a4e7c9d9ac (patch) | |
tree | 862deb5c3a9d8c0d60004129427a05ac6f43ac73 /source | |
parent | 09043e3da74246a8a355479630508b8dd13c6683 (diff) | |
download | irrlicht-7a3fc62ada4001d5bb6c97ed26ec19a4e7c9d9ac.tar.xz |
Haiku: build fix
Diffstat (limited to 'source')
-rw-r--r-- | source/Irrlicht/CFileSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Irrlicht/CFileSystem.cpp b/source/Irrlicht/CFileSystem.cpp index 3ee35d9..cddda94 100644 --- a/source/Irrlicht/CFileSystem.cpp +++ b/source/Irrlicht/CFileSystem.cpp @@ -796,7 +796,7 @@ IFileList* CFileSystem::createFileList() size = buf.st_size;
isDirectory = S_ISDIR(buf.st_mode);
}
- #if !defined(_IRR_SOLARIS_PLATFORM_) && !defined(__CYGWIN__)
+ #if !defined(_IRR_SOLARIS_PLATFORM_) && !defined(__CYGWIN__) && !defined(__HAIKU__)
// only available on some systems
else
{
|