diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/save.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/save.cpp b/test/save.cpp index 675041c7..2df1d296 100644 --- a/test/save.cpp +++ b/test/save.cpp @@ -61,10 +61,10 @@ chunk& test_app::make_test_chunk(world& w, chunk_coords_ ch) { fm_assert(!e.active); e.activate(e.index()); fm_assert(e.active); - { auto index = e.index(); e.update(index, dt); } + { auto index = e.index(); e.update(eʹ, index, dt); } fm_assert(e.frame != end); for (int i = 0; i < 60*3; i++) - { auto index = e.index(); e.update(index, dt); } + { auto index = e.index(); e.update(eʹ, index, dt); } fm_assert(e.frame == 0); fm_assert(!e.active); } |