just to detail what we're doing with this hacky fixed baro patch (want to modify as little as possible)

- @0xC366 instead of setting baro=map during its update routine if conditions are met, it simply sets baro=baro and moves on.

- @0xA3CF during the keep-alive (or other update) routine (which ensures map never exceeds baro), it compares map to baro, but doesn't actually store the value (i just changed STAA to LDAA, so it's loading the value again and continuing on)

- @0xE5E4 we override the initial value for BARO (0xFF / 104.5KPA) to a new fixed value (about half of that for your two bar thing)

keep in mind the bin offset is 0x8000 and disassembly addresses are relative to 0x0000.. so if you're looking at the bin, subtract 0x8000 from the addresses above