]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/hud_dnst.cxx
- fix two bugs
[flightgear.git] / src / Cockpit / hud_dnst.cxx
1 #include "hud.hxx"
2
3
4 dual_instr_item::dual_instr_item(
5         int          x,
6         int          y,
7         UINT         width,
8         UINT         height,
9         FLTFNPTR     chn1_source,
10         FLTFNPTR     chn2_source,
11         bool         working,
12         UINT         options) :
13     instr_item(x, y, width, height,
14                 chn1_source, options, working),
15                 alt_data_source(chn2_source)
16 {
17 }
18
19