proto: Remove parse_platform_info.
This commit is contained in:
parent
1db610f42e
commit
f41935dae2
@ -98,8 +98,8 @@ process_handle(16#020d, CSocket, Version, Orig) ->
|
|||||||
%% @doc Platform information handler. Obtain the game version.
|
%% @doc Platform information handler. Obtain the game version.
|
||||||
|
|
||||||
process_handle(16#080e, CSocket, _, Orig) ->
|
process_handle(16#080e, CSocket, _, Orig) ->
|
||||||
[{version, RealVersion}] = egs_proto:parse_platform_info(Orig),
|
<< _:416, Version:32/little-unsigned-integer, _/bits >> = Orig,
|
||||||
?MODULE:process(CSocket, RealVersion);
|
?MODULE:process(CSocket, Version);
|
||||||
|
|
||||||
%% @doc Unknown command handler. Do nothing.
|
%% @doc Unknown command handler. Do nothing.
|
||||||
|
|
||||||
|
@ -162,12 +162,6 @@ parse_options_change(Packet) ->
|
|||||||
<< _:352, Options/bits >> = Packet,
|
<< _:352, Options/bits >> = Packet,
|
||||||
[{options, Options}].
|
[{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.
|
%% @doc Center the camera on the player, if possible.
|
||||||
%% @todo Probably.
|
%% @todo Probably.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user