diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-06 00:16:52 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-06 00:16:52 +0100 |
commit | 152205cffbce23f98cb317d5fc65d1fbb2f6af58 (patch) | |
tree | db2c182c14b45fa5b41a65d488028bac71486ac6 /test | |
parent | 394c8a39fa2281981fc1b6223a57a51eab44055b (diff) |
fixup! test/critter: don't stop iterating on fractional movement
Diffstat (limited to 'test')
-rw-r--r-- | test/critter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/critter.cpp b/test/critter.cpp index 1d76719e..aff7d6ae 100644 --- a/test/critter.cpp +++ b/test/critter.cpp @@ -302,7 +302,7 @@ void test_app::test_critter() test1("dt=100 accel=2", constantly(Millisecond * 100.0 ), 2); // test1("dt=16.667 accel=0.5", constantly(Millisecond * 16.667),0.5); // todo! fix this! test1("dt=100 accel=0.5", constantly(Millisecond * 100.0 ), 0.5); - test1("dt=16.667 ms accel=1", constantly(Millisecond * 16.667), 1); // todo! fix this! + test1("dt=16.667 ms accel=1", constantly(Millisecond * 16.667), 1); test2("dt=33.334 accel=1", constantly(Millisecond * 33.334), 1); test2("dt=33.334 accel=2", constantly(Millisecond * 33.334), 2); test2("dt=33.334 accel=5", constantly(Millisecond * 33.334), 5); |