Browse Source

This should allow any type to be used as Delta... (#325)

* This should allow any type to be used as Delta, beyond native numerical types.
* Why write more code than you have to?
xiss burg 6 years ago
parent
commit
f80a03afc7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/process/process.hpp

+ 1 - 1
src/entt/process/process.hpp

@@ -188,7 +188,7 @@ public:
             current = state::ABORTED;
             current = state::ABORTED;
 
 
             if(immediately) {
             if(immediately) {
-                tick(0);
+                tick({});
             }
             }
         }
         }
     }
     }