proto: Remove parse_platform_info.

This commit is contained in:
Loïc Hoguin 2010-06-04 11:26:22 +02:00
parent 1db610f42e
commit f41935dae2
2 changed files with 2 additions and 8 deletions

View File

@ -98,8 +98,8 @@ process_handle(16#020d, CSocket, Version, Orig) ->
%% @doc Platform information handler. Obtain the game version.
process_handle(16#080e, CSocket, _, Orig) ->
[{version, RealVersion}] = egs_proto:parse_platform_info(Orig),
?MODULE:process(CSocket, RealVersion);
<< _:416, Version:32/little-unsigned-integer, _/bits >> = Orig,
?MODULE:process(CSocket, Version);
%% @doc Unknown command handler. Do nothing.

View File

@ -162,12 +162,6 @@ parse_options_change(Packet) ->
<< _:352, Options/bits >> = Packet,
[{options, Options}].
%% @doc Parse the platform information command. Retrieve the game version for later use.
parse_platform_info(Packet) ->
<< _:416, Version:32/little-unsigned-integer, _/bits >> = Packet,
[{version, Version}].
%% @doc Center the camera on the player, if possible.
%% @todo Probably.