| 48 | } |
| 49 | |
| 50 | void Quotes::InitializeQuote(int num, const char *text, bool fromscript) |
| 51 | { |
| 52 | quotes[num] = text; |
| 53 | if (fromscript) // means this is the initial setup from the source data. |
| 54 | { |
| 55 | MakeStringLabel(quotes[num]); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | void Quotes::AppendQuote(int dst, int src, int len) |
| 60 | { |
no outgoing calls
no test coverage detected