From a3bc8d3440acefb7168c849337e4a4841bf11c3d Mon Sep 17 00:00:00 2001 From: Maik Betka <9078425+voidptr127@users.noreply.github.com> Date: Mon, 17 Apr 2023 17:09:48 +0200 Subject: fixed wrong implementation of control bits in atnwalk.c --- custom_mutators/atnwalk/atnwalk.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/custom_mutators/atnwalk/atnwalk.c b/custom_mutators/atnwalk/atnwalk.c index 483ae542..cc9f9618 100644 --- a/custom_mutators/atnwalk/atnwalk.c +++ b/custom_mutators/atnwalk/atnwalk.c @@ -16,10 +16,10 @@ const uint8_t SERVER_ARE_YOU_ALIVE = 42; const uint8_t SERVER_YES_I_AM_ALIVE = 213; // control bits -const uint8_t SERVER_DECODE_BIT = 0b00000001; -const uint8_t SERVER_ENCODE_BIT = 0b00000010; -const uint8_t SERVER_MUTATE_BIT = 0b00000100; -const uint8_t SERVER_CROSSOVER_BIT = 0b00001000; +const uint8_t SERVER_CROSSOVER_BIT = 0b00000001; +const uint8_t SERVER_MUTATE_BIT = 0b00000010; +const uint8_t SERVER_DECODE_BIT = 0b00000100; +const uint8_t SERVER_ENCODE_BIT = 0b00001000; typedef struct atnwalk_mutator { -- cgit 1.4.1