diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-08 14:51:36 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-08 14:51:36 +0000 |
commit | 80de35a12f4da3003c7e4c8f63bbc72b075baa0f (patch) | |
tree | b9ead59a8628a08272a5a54ab24b24bbb5192ded /src/common/cbasetypes.h | |
parent | 7bfcaa365f27cbd8db87215aaaa9dec92b0edfa0 (diff) | |
download | hercules-80de35a12f4da3003c7e4c8f63bbc72b075baa0f.tar.gz hercules-80de35a12f4da3003c7e4c8f63bbc72b075baa0f.tar.bz2 hercules-80de35a12f4da3003c7e4c8f63bbc72b075baa0f.tar.xz hercules-80de35a12f4da3003c7e4c8f63bbc72b075baa0f.zip |
- Made the return code \n for Apple systems (it was \r before), this still needs fixing, since it should be /r only for pre OSX systems.
- status_change_start will no longer abort if the duration is less than 0 if the status is Ankle Snare (since this stat has it's own minimum)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10185 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/cbasetypes.h')
-rw-r--r-- | src/common/cbasetypes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index 6db351b67..9eef2d6e5 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -276,8 +276,10 @@ typedef char bool; #if defined(WIN32) || defined(CYGWIN) #define RETCODE "\r\n" // CR/LF : Windows systems +/*FIXME: Mac OSX also uses \n, only pre-OSX uses \r #elif defined(__APPLE__) #define RETCODE "\r" // CR : Macintosh systems +*/ #else #define RETCODE "\n" // LF : Unix systems #endif |