| 559 | } |
| 560 | |
| 561 | void Game_Variables::DivArray(int first_id_a, int last_id_a, int first_id_b) { |
| 562 | PrepareArray(first_id_a, last_id_a, first_id_b, "Invalid write var[{},{}] /= var[{},{}]!"); |
| 563 | WriteArray(first_id_a, last_id_a, first_id_b, VarDiv); |
| 564 | } |
| 565 | |
| 566 | void Game_Variables::ModArray(int first_id_a, int last_id_a, int first_id_b) { |
| 567 | PrepareArray(first_id_a, last_id_a, first_id_b, "Invalid write var[{},{}] %= var[{},{}]!"); |
no outgoing calls
no test coverage detected