about summary refs log tree commit diff
path: root/src/engine/docs
diff options
context:
space:
mode:
authorShereef Marzouk <GreYFoXGTi@GMaiL.CoM>2011-08-11 10:59:14 +0200
committerShereef Marzouk <GreYFoXGTi@GMaiL.CoM>2011-08-11 10:59:14 +0200
commitc6fd4a2cc57f8d9dec7164aff98f5a73abc9698d (patch)
treec17c0042e9865ea0d6c0476ee7ef930b4dbcab35 /src/engine/docs
parent2084febca79d57de3fe1d2781bf0803dd3e96b27 (diff)
downloadzcatch-c6fd4a2cc57f8d9dec7164aff98f5a73abc9698d.tar.gz
zcatch-c6fd4a2cc57f8d9dec7164aff98f5a73abc9698d.zip
General whitespace and tab cleanup
Diffstat (limited to 'src/engine/docs')
-rw-r--r--src/engine/docs/client_time.txt2
-rw-r--r--src/engine/docs/prediction.txt2
-rw-r--r--src/engine/docs/server_op.txt4
-rw-r--r--src/engine/docs/snapshots.txt2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/docs/client_time.txt b/src/engine/docs/client_time.txt
index bc76f91c..0d4dd53e 100644
--- a/src/engine/docs/client_time.txt
+++ b/src/engine/docs/client_time.txt
@@ -6,6 +6,6 @@ predtick, predintratick
  prevtick              tick                 predtick
    4                     8                    14
    |---------------------|---------------------|
-   0 <- intratick    ->  1                     
+   0 <- intratick    ->  1
    0 <- ticktime(in s)-> X
                          0 <- predintratick?-> 1
diff --git a/src/engine/docs/prediction.txt b/src/engine/docs/prediction.txt
index d5771d1a..e740b1e8 100644
--- a/src/engine/docs/prediction.txt
+++ b/src/engine/docs/prediction.txt
@@ -8,7 +8,7 @@ Predicted input sent to the server can be retrived by calling <client_get_input>
 > {
 > 	int tick;
 > 	prediction_reset();
-> 
+>
 > 	for(tick = client_tick()+1; tick <= client_predtick(); tick++)
 > 	{
 > 		MY_INPUT *input = (MY_INPUT *)client_get_input();
diff --git a/src/engine/docs/server_op.txt b/src/engine/docs/server_op.txt
index 59181e62..c0a054c4 100644
--- a/src/engine/docs/server_op.txt
+++ b/src/engine/docs/server_op.txt
@@ -25,13 +25,13 @@ while running
 			send snapshot
 		end for
 	end
-	
+
 	process new network messages
 end while
 
 unload map
 (end)
-		
+
 
 
 Section: Reinit
diff --git a/src/engine/docs/snapshots.txt b/src/engine/docs/snapshots.txt
index 647b049a..adb84863 100644
--- a/src/engine/docs/snapshots.txt
+++ b/src/engine/docs/snapshots.txt
@@ -48,7 +48,7 @@ After a snapshot have been created, compression is applyed to reduce the bandwid
 
 Topic: Interval
 
-The interval for how often a client recives a snapshot changes during the course of the connection. There are three different snapshot rates. 
+The interval for how often a client recives a snapshot changes during the course of the connection. There are three different snapshot rates.
 
 - *Init*. 5 snapshots per second. Used when a client is connecting and used until the client has acknowlaged a snapshot. This mechanism is used because the first snapshot because no delta compression can be done.