equal
deleted
inserted
replaced
218 * @param width The width of the sprite |
218 * @param width The width of the sprite |
219 * @param height The height of the sprite |
219 * @param height The height of the sprite |
220 */ |
220 */ |
221 void GetAircraftSpriteSize(EngineID engine, uint &width, uint &height) |
221 void GetAircraftSpriteSize(EngineID engine, uint &width, uint &height) |
222 { |
222 { |
223 const Sprite *spr = GetSprite(GetAircraftIcon(engine)); |
223 const Sprite *spr = GetSprite(GetAircraftIcon(engine), ST_NORMAL); |
224 |
224 |
225 width = spr->width; |
225 width = spr->width; |
226 height = spr->height; |
226 height = spr->height; |
227 } |
227 } |
228 |
228 |