Some minor changes to make it compile on AROS.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1649 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
masta.uy
2010-11-13 20:05:12 +00:00
parent aeb7f26809
commit 0bfc627094
4 changed files with 19 additions and 2 deletions

View File

@@ -299,7 +299,7 @@ int Lock_file_handle = -1;
byte Create_lock_file(const char *file_directory)
{
#ifdef __amigaos__
#if defined (__amigaos__)||(__AROS__)
#warning "Missing code for your platform, please check and correct!"
#else
char lock_filename[MAX_PATH_CHARACTERS];
@@ -336,7 +336,7 @@ byte Create_lock_file(const char *file_directory)
return -1;
}
#endif
#endif // __amigaos__
#endif // __amigaos__ or __AROS__
return 0;
}