mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 09:10:54 +00:00
* net_bsd.c: minor whitespace tidy-up.
* net_sdl.c (net_drivers[]): removed duplicated Datagram entry. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@188 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
573e555f67
commit
cc6fed600f
2 changed files with 2 additions and 18 deletions
|
@ -8,7 +8,7 @@ of the License, or (at your option) any later version.
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
See the GNU General Public License for more details.
|
See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
@ -91,3 +91,4 @@ net_landriver_t net_landrivers[MAX_NET_DRIVERS] =
|
||||||
};
|
};
|
||||||
|
|
||||||
int net_numlandrivers = 1;
|
int net_numlandrivers = 1;
|
||||||
|
|
||||||
|
|
|
@ -60,23 +60,6 @@ net_driver_t net_drivers[MAX_NET_DRIVERS] =
|
||||||
Datagram_Close,
|
Datagram_Close,
|
||||||
Datagram_Shutdown
|
Datagram_Shutdown
|
||||||
}
|
}
|
||||||
,
|
|
||||||
{
|
|
||||||
"Datagram",
|
|
||||||
false,
|
|
||||||
Datagram_Init,
|
|
||||||
Datagram_Listen,
|
|
||||||
Datagram_SearchForHosts,
|
|
||||||
Datagram_Connect,
|
|
||||||
Datagram_CheckNewConnections,
|
|
||||||
Datagram_GetMessage,
|
|
||||||
Datagram_SendMessage,
|
|
||||||
Datagram_SendUnreliableMessage,
|
|
||||||
Datagram_CanSendMessage,
|
|
||||||
Datagram_CanSendUnreliableMessage,
|
|
||||||
Datagram_Close,
|
|
||||||
Datagram_Shutdown
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
int net_numdrivers = 2;
|
int net_numdrivers = 2;
|
||||||
|
|
Loading…
Reference in a new issue