| 2224 | } |
| 2225 | |
| 2226 | void cFodder::Music_Play_Tileset(int16_t pSong) { |
| 2227 | |
| 2228 | if (!mStartParams->mDisableSound) { |
| 2229 | if (pSong == -1) |
| 2230 | pSong = 2; |
| 2231 | |
| 2232 | mSound->Music_Play(mMapLoaded->getTileType() + 0x32, pSong); |
| 2233 | mSound->Music_SetVolume(-1, 0); |
| 2234 | } |
| 2235 | mMapTile_Music_Play = false; |
| 2236 | } |
| 2237 | |
| 2238 | void cFodder::Camera_Pan_To_Target() { |
| 2239 | Camera_Pan_Set_Speed(); |
nothing calls this directly
no test coverage detected