* 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:
Ozkan Sezer 2010-06-19 16:45:38 +00:00
parent 573e555f67
commit cc6fed600f
2 changed files with 2 additions and 18 deletions

View file

@ -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,
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.
@ -91,3 +91,4 @@ net_landriver_t net_landrivers[MAX_NET_DRIVERS] =
};
int net_numlandrivers = 1;

View file

@ -60,23 +60,6 @@ net_driver_t net_drivers[MAX_NET_DRIVERS] =
Datagram_Close,
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;