This commit is contained in:
Jesse Talavera 2024-01-19 13:38:30 -05:00
parent c0084c145b
commit 26b66bb0d6
2 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,10 @@ and this project roughly adheres to [Semantic Versioning](https://semver.org/spe
128-pixel gaps are no longer available due to
libretro limits on how many core option values can be defined.
### Fixed
- Fixed an issue where the emulated console could not connect to the network.
## [1.0.1] - 2024-01-12
### Fixed

View File

@ -134,7 +134,7 @@ bool MelonDsDs::CoreState::LanInit() noexcept {
// LAN::PCap may already be initialized if we're using direct mode,
// as it was necessary to query the available interfaces for the core options
switch (NetworkMode()) {
switch (Config.NetworkMode()) {
#ifdef HAVE_NETWORKING_DIRECT_MODE
case MelonDsDs::NetworkMode::Direct: {
const LAN_PCap::AdapterData* adapter = SelectNetworkInterface(LAN_PCap::Adapters, LAN_PCap::NumAdapters);