Skip to content

Commit

Permalink
Remove useless call to CNetSubSystem::Process()
Browse files Browse the repository at this point in the history
This function is called by a CNetTask after the CNetSubSystem is
initialized, so we should not be calling it manually.

Fixes broken Ethernet on some Raspberry Pi models.
  • Loading branch information
dwhinham committed Apr 13, 2022
1 parent 70ef554 commit 97894a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update to inih r55.

### Fixed

- Ethernet connectivity was broken on some Raspberry Pi models. Thanks to Sal Bugliarisi, @retro and @MorkMikael for the reports!

## [0.11.2] - 2022-03-25

### Added
Expand Down
2 changes: 0 additions & 2 deletions src/mt32pi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -892,8 +892,6 @@ void CMT32Pi::UpdateNetwork()
delete m_pFTPDaemon;
m_pFTPDaemon = nullptr;
}

m_pNet->Process();
}

void CMT32Pi::UpdateMIDI()
Expand Down

0 comments on commit 97894a2

Please sign in to comment.