diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2014-06-22 15:47:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-23 06:47:47 +0800 |
commit | 21916d67de37fcca027fa392995c24084c954bc1 (patch) | |
tree | 0f819ed8240c5364f351134ea697ff7a27f2094d /equipment.c | |
parent | 6ee2758e06a4e06b43dfcf4596c1f86faaa0075e (diff) | |
download | subsurface-21916d67de37fcca027fa392995c24084c954bc1.tar.gz |
Use that pretty ℓ in the equipment list as well
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'equipment.c')
-rw-r--r-- | equipment.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/equipment.c b/equipment.c index 1dd3c3f9d..ed28b5281 100644 --- a/equipment.c +++ b/equipment.c @@ -157,8 +157,8 @@ struct tank_info_t tank_info[100] = { { "", }, /* Size-only metric cylinders */ - { "10.0 l", .ml = 10000 }, - { "11.1 l", .ml = 11100 }, + { "10.0ℓ", .ml = 10000 }, + { "11.1ℓ", .ml = 11100 }, /* Most common AL cylinders */ { "AL40", .cuft = 40, .psi = 3000 }, @@ -182,14 +182,14 @@ struct tank_info_t tank_info[100] = { { "HP130", .cuft = 130, .psi = 3442 }, /* Common European steel cylinders */ - { "3L 232 bar", .ml = 3000, .bar = 232 }, - { "3L 300 bar", .ml = 3000, .bar = 300 }, - { "10L 300 bar", .ml = 10000, .bar = 300 }, - { "12L 200 bar", .ml = 12000, .bar = 200 }, - { "12L 232 bar", .ml = 12000, .bar = 232 }, - { "12L 300 bar", .ml = 12000, .bar = 300 }, - { "15L 200 bar", .ml = 15000, .bar = 200 }, - { "15L 232 bar", .ml = 15000, .bar = 232 }, + { "3ℓ 232 bar", .ml = 3000, .bar = 232 }, + { "3ℓ 300 bar", .ml = 3000, .bar = 300 }, + { "10ℓ 300 bar", .ml = 10000, .bar = 300 }, + { "12ℓ 200 bar", .ml = 12000, .bar = 200 }, + { "12ℓ 232 bar", .ml = 12000, .bar = 232 }, + { "12ℓ 300 bar", .ml = 12000, .bar = 300 }, + { "15ℓ 200 bar", .ml = 15000, .bar = 200 }, + { "15ℓ 232 bar", .ml = 15000, .bar = 232 }, { "D7 300 bar", .ml = 14000, .bar = 300 }, { "D8.5 232 bar", .ml = 17000, .bar = 232 }, { "D12 232 bar", .ml = 24000, .bar = 232 }, |