| 68 | } |
| 69 | |
| 70 | static void fxBundleMapPut(const char *name, const char *source, size_t sourceLen) |
| 71 | { |
| 72 | if (gBundleMapCount >= kBundleMapCap) |
| 73 | return; |
| 74 | gBundleMap[gBundleMapCount].name = name; |
| 75 | gBundleMap[gBundleMapCount].source = source; |
| 76 | gBundleMap[gBundleMapCount].sourceLen = sourceLen; |
| 77 | gBundleMapCount++; |
| 78 | } |
| 79 | |
| 80 | static const txBundleEntry *fxBundleMapGet(const char *name) |
| 81 | { |