Skip to content

Commit

Permalink
reset was not changed to c_reset in enduro.c
Browse files Browse the repository at this point in the history
  • Loading branch information
xinpw8 committed Jan 28, 2025
1 parent 40827e0 commit 05d06fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pufferlib/ocean/enduro/enduro.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int demo() {

unsigned int seed = 0;
init(&env, seed, 0);
reset(&env);
c_reset(&env);

while (!WindowShouldClose()) {
if (IsKeyDown(KEY_LEFT_SHIFT)) {
Expand Down Expand Up @@ -78,7 +78,7 @@ void perftest(float test_time) {

unsigned int seed = 12345;
init(&env, seed, 0);
reset(&env);
c_reset(&env);

int start = time(NULL);
int i = 0;
Expand Down

0 comments on commit 05d06fe

Please sign in to comment.