~ubuntu-branches/debian/sid/monopd/sid

« back to all changes in this revision

Viewing changes to src/server.cpp

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2015-07-19 16:06:47 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20150719160647-7du17tut91chxf8j
Tags: 0.10.1-1
ImportedĀ UpstreamĀ versionĀ 0.10.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
475
475
                }
476
476
 
477
477
                timersub(event->launchTime(), &timenow, &timeres);
478
 
                // add 1ms to adjust for precision lost in tv_usec/10000
 
478
                // add 1ms to adjust for precision lost in tv_usec/1000
479
479
                timems = (timeres.tv_sec*1000 + timeres.tv_usec/1000) +1;
480
480
                if (timeleft > timems) {
481
481
                        timeleft = timems;
1016
1016
        }
1017
1017
 
1018
1018
        if (game->clientsMoving()) {
1019
 
                pInput->ioNoSuchCmd("other clients are still moving");
 
1019
                pInput->ioNoSuchCmd("other players are still moving");
1020
1020
                // The rest of the commands are only available when no clients are moving
1021
1021
                return;
1022
1022
        }