game: Make send_0c08 use booleans rather than ok/error.

This commit is contained in:
Loïc Hoguin 2010-06-28 12:36:56 +02:00
parent 3b2ed1c242
commit 7cda96f7e0

View File

@ -752,7 +752,7 @@ handle(16#0c05, _) ->
%% @todo Handle correctly. %% @todo Handle correctly.
handle(16#0c07, _) -> handle(16#0c07, _) ->
send_0c08(ok); send_0c08(true);
%% @doc Abort mission handler. %% @doc Abort mission handler.
@ -1166,10 +1166,10 @@ send_0c06(Filename) ->
send(<< 16#0c060300:32, 0:288, 1:32/little-unsigned-integer, File/binary >>). send(<< 16#0c060300:32, 0:288, 1:32/little-unsigned-integer, File/binary >>).
%% @doc Reply whether the player is allowed to use the transport option. %% @doc Reply whether the player is allowed to use the transport option.
%% Use 'ok' for allowing it, and 'error' otherwise. %% Use true for allowing it, and false otherwise.
send_0c08(Response) -> send_0c08(Response) ->
Value = if Response =:= ok -> 0; true -> 1 end, Value = if Response =:= true -> 0; true -> 1 end,
send(<< (header(16#0c08))/binary, Value:32 >>). send(<< (header(16#0c08))/binary, Value:32 >>).
%% @doc Send the trial start notification. %% @doc Send the trial start notification.