Skip to content

Commit

Permalink
Merge pull request #848 from ds22x/master
Browse files Browse the repository at this point in the history
Fix Libretro netplay immediately disconnecting
  • Loading branch information
bearoso authored May 9, 2023
2 parents 53ebf7b + 000aa6f commit 7b9cadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libretro/libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ bool retro_load_game(const struct retro_game_info *game)
}

else
rom_loaded = Memory.LoadROMMem((const uint8_t*)game->data ,game->size, game->path);
rom_loaded = Memory.LoadROMMem((const uint8_t*)game->data ,game->size, g_basename);

if(biosrom) delete[] biosrom;
}
Expand Down

0 comments on commit 7b9cadb

Please sign in to comment.