| 88 | } |
| 89 | |
| 90 | void LocationZoomer::MoveToLocation(char key) |
| 91 | { |
| 92 | if (mLocations.count(key) > 0) |
| 93 | { |
| 94 | mStart.mZoomLevel = gDrawScale; |
| 95 | mStart.mOffset = TheSynth->GetDrawOffset(); |
| 96 | mDestination = mLocations[key]; |
| 97 | mCurrentProgress = 0; |
| 98 | mSpeed = 2; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | void LocationZoomer::GoHome() |
| 103 | { |
no test coverage detected