diff options
author | Carsten Weisse <[email protected]> | 2006-01-01 15:05:47 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2006-01-01 15:05:47 +0000 |
commit | 0b6fa43cfccca0e20a14d517ddaba16046ff737a (patch) | |
tree | 532285a8ccff9582416c75985daf1009bf455fc1 /src | |
parent | 9d4a45835aa0ecdf6c92c3cc1ac93e3526ba40e9 (diff) |
use the system a little endian byte order?
Diffstat (limited to 'src')
-rw-r--r-- | src/jake2/Defines.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/jake2/Defines.java b/src/jake2/Defines.java index 978bca6..18ecc8d 100644 --- a/src/jake2/Defines.java +++ b/src/jake2/Defines.java @@ -19,12 +19,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // Created on 31.10.2003 by RST. -// $Id: Defines.java,v 1.8 2005-12-27 21:02:30 salomo Exp $ +// $Id: Defines.java,v 1.9 2006-01-01 15:05:47 cawe Exp $ /** Contains the definitions for the game engine. */ package jake2; +import java.nio.ByteOrder; + public class Defines { @@ -1351,6 +1353,8 @@ public class Defines { // datentyp konstanten // groesse in bytes + public final static boolean LITTLE_ENDIAN = (ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN); + public final static int SIZE_OF_SHORT = 2; public final static int SIZE_OF_INT = 4; @@ -1359,4 +1363,6 @@ public class Defines { public final static int SIZE_OF_FLOAT = 4; - public final static int SIZE_OF_DOUBLE = 8;} + public final static int SIZE_OF_DOUBLE = 8; + +}
\ No newline at end of file |