| 366 | } |
| 367 | |
| 368 | sImage cGraphics_Amiga::Decode_Image(const std::string& pFilename, const size_t pCount, const size_t pPaletteOffset, const size_t pStartIndex) { |
| 369 | sImage Image; |
| 370 | |
| 371 | Image = DecodeIFF(pFilename + ".lbm"); |
| 372 | Image.CopyPalette(mPalette, pCount, pStartIndex); |
| 373 | |
| 374 | return Image; |
| 375 | } |
| 376 | |
| 377 | void cGraphics_Amiga::Load_Service_Data() { |
| 378 |
nothing calls this directly
no test coverage detected