Skip to content

Commit

Permalink
PhysicsSystem.update() shouldn't require specific implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 28, 2024
1 parent bc5ebf0 commit 88402b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void optimizeBroadPhase() {
* @see com.github.stephengold.joltjni.EPhysicsUpdateError
*/
public int update(float deltaTime, int collisionSteps,
TempAllocatorImpl tempAllocator, JobSystemThreadPool jobSystem) {
TempAllocator tempAllocator, JobSystem jobSystem) {
long allocatorVa = tempAllocator.va();
long jobSystemVa = jobSystem.va();
int result = update(
Expand Down

0 comments on commit 88402b4

Please sign in to comment.