Clears the data for room changes
| 1267 | |
| 1268 | // Clears the data for room changes |
| 1269 | void ClearRoomChanges() { |
| 1270 | for (int i = 0; i < MAX_ROOM_CHANGES; i++) { |
| 1271 | Room_changes[i].used = 0; |
| 1272 | } |
| 1273 | } |
| 1274 | |
| 1275 | // Returns index of room change allocatd, else -1 on error |
| 1276 | int AllocRoomChange() { |