| 508 | } |
| 509 | |
| 510 | void cGraphics_Amiga::PaletteSet(cSurface* pTarget) { |
| 511 | if (!pTarget) |
| 512 | pTarget = mSurface; |
| 513 | |
| 514 | pTarget->paletteSet(mPalette, 0, 64); |
| 515 | pTarget->paletteSet(mImagePStuff.mPalette, 0xE0, 16); |
| 516 | pTarget->paletteSet(mImageHillBackground.mPalette, 0xB0, 16); // 0xB0 is used by save/load screen |
| 517 | pTarget->paletteSet(mImageHillBackground.mPalette, 0xD0, 16); |
| 518 | pTarget->paletteSet(mImageFonts.mPalette, 0xF0, 16); |
| 519 | } |
| 520 | |
| 521 | sImage cGraphics_Amiga::DecodeIFF(const std::string& pFilename) { |
| 522 | sImage Result; |
nothing calls this directly
no test coverage detected