mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 20:10:03 +00:00
code: Cleanup and warning fixes from the Vulkan PR (#6163)
Co-authored-by: emufan4568 <geoster3d@gmail.com> Co-authored-by: Kyle Kienapfel <Docteh@users.noreply.github.com>
This commit is contained in:
parent
aa84022704
commit
1ddea27ac8
72 changed files with 895 additions and 626 deletions
|
@ -92,7 +92,8 @@ u16 NWM_UDS::GetNextAvailableNodeId() {
|
|||
}
|
||||
|
||||
// Any connection attempts to an already full network should have been refused.
|
||||
ASSERT_MSG(false, "No available connection slots in the network");
|
||||
UNREACHABLE_MSG("No available connection slots in the network");
|
||||
return 0;
|
||||
}
|
||||
|
||||
void NWM_UDS::BroadcastNodeMap() {
|
||||
|
|
|
@ -15,9 +15,6 @@
|
|||
|
||||
namespace Service::NWM {
|
||||
|
||||
// 802.11 broadcast MAC address
|
||||
constexpr MacAddress BroadcastMac = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
||||
|
||||
constexpr u64 DefaultNetworkUptime = 900000000; // 15 minutes in microseconds.
|
||||
|
||||
// Note: These values were taken from a packet capture of an o3DS XL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue