This commit is contained in:
2026-05-21 20:05:00 +09:00
parent 77ff0ca084
commit 0a217049b1
3 changed files with 14 additions and 5 deletions
+2 -2
View File
@@ -348,7 +348,7 @@ do_check2(State = #s{recvr = PID}) ->
State#s{recvr = none}
end.
challenge(State = #s{recvr = PID, keys = KeyP}, Challenge) ->
challenge(State = #s{recvr = PID, keys = #w{wx = KeyP}}, Challenge) ->
case wxChoice:getStringSelection(KeyP) of
"" ->
ok = gd_n_recvr:stop(PID),
@@ -416,7 +416,7 @@ do_retire(PID, Info, State = #s{rider = PID}) ->
ok = tell(info, "Rider retired with: ~p", [Info]),
State#s{rider = none};
do_retire(PID, Info, State = #s{recvr = PID}) ->
ok = tell(info, "Rider retired with: ~p", [Info]),
ok = tell(info, "Recvr retired with: ~p", [Info]),
State#s{recvr = none};
do_retire(PID, Info, State) ->
ok = tell(info, "~p retired with: ~p", [PID, Info]),