| 264 | static void PBAddVoice(char *filename, int flags, char *description); |
| 265 | |
| 266 | bool IsMissionMaskOK(uint32_t set, uint32_t unset) { |
| 267 | uint32_t Gamemissionmask = Current_mission.game_state_flags; |
| 268 | |
| 269 | uint32_t fGamemissionmask; |
| 270 | fGamemissionmask = Gamemissionmask ^ 0xFFFFFFFF; |
| 271 | |
| 272 | if (!(((set & Gamemissionmask) == set) && ((unset & fGamemissionmask) == unset))) { |
| 273 | return false; |
| 274 | } |
| 275 | |
| 276 | return true; |
| 277 | } |
| 278 | |
| 279 | void ReplaceHotTag(char *string, int tag) { |
| 280 | if (tag < 0 || tag >= NumHotTags) { |
no outgoing calls
no test coverage detected