If the forward Sbox is
$$[S(0),\ldots,S(255)]$$ it is normally a permutation. You cannot change only one byte and keep the permutation property. You need to change at least two bytes. THus the inverse will also be changed only in two bytes. To give an example if you had
$$
[S(0),S(1),\ldots,S(255)]=[7,31,21,\ldots,72]
$$
then you might do
$$
[S(0),\ldots,S(255)]=[21,31,7,\ldots,72]
$$
with only the first and third bytes changed. So in the inverse direction now you have
$$
S^{-1}(21)=0,S^{-1}(7)=2,
$$
while you originally had
$$
S^{-1}(21)=2,S^{-1}(7)=0,
$$
with everything else unchanged.