project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/EngineProtocol/PascalExports.java
changeset 10017 de822cd3df3a
parent 8538 0e113487c4b2
child 15512 45d6806548e9
--- a/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/EngineProtocol/PascalExports.java	Tue Jan 21 22:38:13 2014 +0100
+++ b/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/EngineProtocol/PascalExports.java	Tue Jan 21 22:43:06 2014 +0100
@@ -21,28 +21,28 @@
 package org.hedgewars.hedgeroid.EngineProtocol;
 
 public class PascalExports {
-	public static Object engineMutex = new Object();
+    public static Object engineMutex = new Object();
 
-	static{
-		System.loadLibrary("SDL");
-		System.loadLibrary("SDL_image");
-		System.loadLibrary("mikmod");
-		System.loadLibrary("SDL_net");
-		System.loadLibrary("SDL_mixer");
-		System.loadLibrary("SDL_ttf");
-		System.loadLibrary("lua5.1");
-		System.loadLibrary("physfs");
-		System.loadLibrary("physlayer");
-		System.loadLibrary("hwengine");
-	}
-	
-	public static native int HWgetMaxNumberOfTeams();
+    static{
+        System.loadLibrary("SDL");
+        System.loadLibrary("SDL_image");
+        System.loadLibrary("mikmod");
+        System.loadLibrary("SDL_net");
+        System.loadLibrary("SDL_mixer");
+        System.loadLibrary("SDL_ttf");
+        System.loadLibrary("lua5.1");
+        System.loadLibrary("physfs");
+        System.loadLibrary("physlayer");
+        System.loadLibrary("hwengine");
+    }
+
+    public static native int HWgetMaxNumberOfTeams();
     private static native void HWGenLandPreview(int port);
 
     public static void synchronizedGenLandPreview(int port) {
-    	synchronized(engineMutex) {
-    		HWGenLandPreview(port);
-    	}
+        synchronized(engineMutex) {
+            HWGenLandPreview(port);
+        }
     }
-    
+
 }