1998-07-03 13:16:27 +00:00
|
|
|
#include "hud.hxx"
|
2000-02-15 03:30:01 +00:00
|
|
|
|
2006-06-13 15:00:31 +00:00
|
|
|
|
2006-06-14 10:30:10 +00:00
|
|
|
dual_instr_item::dual_instr_item(
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
UINT width,
|
|
|
|
UINT height,
|
|
|
|
FLTFNPTR chn1_source,
|
|
|
|
FLTFNPTR chn2_source,
|
|
|
|
bool working,
|
2006-06-15 16:03:27 +00:00
|
|
|
UINT options) :
|
|
|
|
instr_item(x, y, width, height,
|
2006-06-14 10:30:10 +00:00
|
|
|
chn1_source, options, working),
|
2006-06-15 16:03:27 +00:00
|
|
|
alt_data_source(chn2_source)
|
1998-07-03 13:16:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-06-14 10:30:10 +00:00
|
|
|
|