Change: extend callback 161 (engine name) with bit 0x22 for context 'Autoreplace - Vehicles in use' (#10666)

This commit is contained in:
Andy
2023-04-16 23:02:32 +01:00
committed by GitHub
parent d949cfab24
commit 15c3bc456f
2 changed files with 11 additions and 5 deletions

View File

@@ -186,10 +186,11 @@ enum EngineFlags {
* Contexts an engine name can be shown in.
*/
enum EngineNameContext : uint8 {
Generic = 0x00, ///< No specific context available.
VehicleDetails = 0x11, ///< Name is shown in the vehicle details GUI.
PurchaseList = 0x20, ///< Name is shown in the purchase list (including autoreplace window).
PreviewNews = 0x21, ///< Name is shown in exclusive preview or newspaper.
Generic = 0x00, ///< No specific context available.
VehicleDetails = 0x11, ///< Name is shown in the vehicle details GUI.
PurchaseList = 0x20, ///< Name is shown in the purchase list (including autoreplace window 'Available vehicles' panel).
PreviewNews = 0x21, ///< Name is shown in exclusive preview or newspaper.
AutoreplaceVehicleInUse = 0x22, ///< Name is show in the autoreplace window 'Vehicles in use' panel.
};
/** Combine an engine ID and a name context to an engine name dparam. */