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
|
|
|
|
1998-07-03 13:16:27 +00:00
|
|
|
//============ Top of dual_instr_item class member definitions ============
|
|
|
|
|
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,
|
|
|
|
UINT options ) :
|
|
|
|
instr_item( x, y, width, height,
|
|
|
|
chn1_source, options, working),
|
|
|
|
alt_data_source( chn2_source )
|
1998-07-03 13:16:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-06-14 10:30:10 +00:00
|
|
|
|
|
|
|
dual_instr_item::dual_instr_item( const dual_instr_item & image) :
|
|
|
|
instr_item ((instr_item &) image ),
|
|
|
|
alt_data_source( image.alt_data_source)
|
1998-07-03 13:16:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|