about summary refs log tree commit diff
path: root/src/engine/docs
diff options
context:
space:
mode:
authoroy <tom_adams@web.de>2011-08-13 09:20:40 -0700
committeroy <tom_adams@web.de>2011-08-13 09:20:40 -0700
commit3fba3ee13e93bc6f0086e282668a8ab579ba07da (patch)
treec17c0042e9865ea0d6c0476ee7ef930b4dbcab35 /src/engine/docs
parentc56cfa12d511559b096579d4e7a80b7cb6bbb6fe (diff)
parentc6fd4a2cc57f8d9dec7164aff98f5a73abc9698d (diff)
downloadzcatch-3fba3ee13e93bc6f0086e282668a8ab579ba07da.tar.gz
zcatch-3fba3ee13e93bc6f0086e282668a8ab579ba07da.zip
Merge pull request #832 from GreYFoX/oypull1
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.