| 574 | } |
| 575 | |
| 576 | void Game_Variables::BitAndArray(int first_id_a, int last_id_a, int first_id_b) { |
| 577 | PrepareArray(first_id_a, last_id_a, first_id_b, "Invalid write var[{},{}] &= var[{},{}]!"); |
| 578 | WriteArray(first_id_a, last_id_a, first_id_b, VarBitAnd); |
| 579 | } |
| 580 | |
| 581 | void Game_Variables::BitXorArray(int first_id_a, int last_id_a, int first_id_b) { |
| 582 | PrepareArray(first_id_a, last_id_a, first_id_b, "Invalid write var[{},{}] ^= var[{},{}]!"); |
no outgoing calls
no test coverage detected