| 849 | } |
| 850 | |
| 851 | RwRaster* NPCC_FindRWRaster(const char* txtrname) |
| 852 | { |
| 853 | RwTexture* txtr = NPCC_FindRWTexture(txtrname); |
| 854 | if (txtr != NULL) |
| 855 | { |
| 856 | return txtr->raster; |
| 857 | } |
| 858 | return NULL; |
| 859 | } |
| 860 | |
| 861 | RwTexture* NPCC_FindRWTexture(U32 hashid) |
| 862 | { |
no test coverage detected