diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-20 17:42:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-20 21:11:13 +0300 |
commit | 8963c582f2d2f2879b69821337a5c396f9712a06 (patch) | |
tree | 9cc8f89e3116bb09ad3f4a30f7552fad6e83fe57 /src/test/testlauncher.cpp | |
parent | 65f5f9343a75a5adabdf840db93106cda71c703f (diff) | |
download | plus-8963c582f2d2f2879b69821337a5c396f9712a06.tar.gz plus-8963c582f2d2f2879b69821337a5c396f9712a06.tar.bz2 plus-8963c582f2d2f2879b69821337a5c396f9712a06.tar.xz plus-8963c582f2d2f2879b69821337a5c396f9712a06.zip |
Fix code style.
Diffstat (limited to 'src/test/testlauncher.cpp')
-rw-r--r-- | src/test/testlauncher.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp index 22a77eb0e..abc22fc75 100644 --- a/src/test/testlauncher.cpp +++ b/src/test/testlauncher.cpp @@ -184,7 +184,7 @@ int TestLauncher::testFps() file << mTest << std::endl; file << tFps << std::endl; - printf("fps: %u\n", tFps); + printf("fps: %d\n", tFps); sleep(1); return 0; } @@ -216,7 +216,7 @@ int TestLauncher::testFps2() file << mTest << std::endl; file << tFps << std::endl; - printf("fps: %u\n", tFps); + printf("fps: %d\n", tFps); sleep(1); return 0; } @@ -263,7 +263,7 @@ int TestLauncher::testFps3() file << mTest << std::endl; file << tFps << std::endl; - printf("fps: %u\n", tFps); + printf("fps: %d\n", tFps); sleep(1); return 0; } |