| 19182 | } |
| 19183 | |
| 19184 | void cFodder::intro_main() { |
| 19185 | if (!mIntroDone) { |
| 19186 | mImage_Aborted = 0; |
| 19187 | mVersionPlatformSwitchDisabled = true; |
| 19188 | |
| 19189 | if (!mParams->mSkipIntro) { |
| 19190 | mWindow->SetScreenSize(mVersionCurrent->GetSecondScreenSize()); |
| 19191 | |
| 19192 | // Show the intro for retail releases (and the PC Format demo) |
| 19193 | if (mVersionCurrent->isRetail() || mVersionCurrent->isPCFormat()) { |
| 19194 | intro_Retail(); |
| 19195 | } |
| 19196 | else { |
| 19197 | // Amiga The One has an intro too |
| 19198 | if (mVersionCurrent->isAmigaTheOne()) { |
| 19199 | intro_AmigaTheOne(); |
| 19200 | } |
| 19201 | } |
| 19202 | } |
| 19203 | |
| 19204 | mGraphics->Load_pStuff(); |
| 19205 | mVersionPlatformSwitchDisabled = false; |
| 19206 | mIntroDone = true; |
| 19207 | } |
| 19208 | } |
| 19209 | |
| 19210 | void cFodder::MapTiles_Draw() { |
| 19211 | mMapTile_ColumnOffset = 0; |
nothing calls this directly
no test coverage detected