/////////////////////////////////////////////////////// TSprite256Control -----------------
| 671 | // ----------------- |
| 672 | // |
| 673 | void |
| 674 | TSprite256Control::BuildBitmapData (const char *name, SHORT remapPlayer) |
| 675 | { |
| 676 | assert (pUsedColors != NULL); |
| 677 | assert (pBitmapData == NULL); |
| 678 | BitmapXSize = BitmapYSize = 0; |
| 679 | |
| 680 | // Initialize pBitmapData and Bitmap size |
| 681 | LoadPictureData (name, &pBitmapData, &BitmapXSize, &BitmapYSize, |
| 682 | remapPlayer); |
| 683 | // assert (pBitmapData != NULL); |
| 684 | } |
| 685 | |
| 686 | |
| 687 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected