| 544 | } |
| 545 | |
| 546 | void Game_Variables::AddArray(int first_id_a, int last_id_a, int first_id_b) { |
| 547 | PrepareArray(first_id_a, last_id_a, first_id_b, "Invalid write var[{},{}] += var[{},{}]!"); |
| 548 | WriteArray(first_id_a, last_id_a, first_id_b, VarAdd); |
| 549 | } |
| 550 | |
| 551 | void Game_Variables::SubArray(int first_id_a, int last_id_a, int first_id_b) { |
| 552 | PrepareArray(first_id_a, last_id_a, first_id_b, "Invalid write var[{},{}] -= var[{},{}]!"); |
no outgoing calls
no test coverage detected