================= Script_FadeIn ================= */
| 2079 | ================= |
| 2080 | */ |
| 2081 | qboolean Script_FadeIn(itemDef_t *item, const char **args) |
| 2082 | { |
| 2083 | const char *name; |
| 2084 | if (String_Parse(args, &name)) |
| 2085 | { |
| 2086 | Menu_FadeItemByName((menuDef_t *) item->parent, name, qfalse); |
| 2087 | } |
| 2088 | |
| 2089 | return qtrue; |
| 2090 | } |
| 2091 | |
| 2092 | /* |
| 2093 | ================= |
nothing calls this directly
no test coverage detected