diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | src/PowderToySDL.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -37,3 +37,5 @@ config.log *.sconf_temp *.gch *.pyc +site_scons/site_tools/mfprogram/*.pyc +site_scons/site_tools/gch/*.pyc
\ No newline at end of file diff --git a/src/PowderToySDL.cpp b/src/PowderToySDL.cpp index 3b8aeab..0a331f5 100644 --- a/src/PowderToySDL.cpp +++ b/src/PowderToySDL.cpp @@ -531,7 +531,7 @@ int main(int argc, char * argv[]) engine->Tick(); engine->Draw(); - if(SDL_GetTicks()-lastTick>500) + if(SDL_GetTicks()-lastTick>250) { //Run client tick every second lastTick = SDL_GetTicks(); |
