- Added some icons.

- Made sure all icon and vbar functions are not the old API functions.
- Removed heartbeat functions from drivers that did standard heartbeat.
This commit is contained in:
robijn
2002-05-23 18:03:36 +00:00
parent 450d05274f
commit dc4c049721
41 changed files with 355 additions and 560 deletions
+4 -1
View File
@@ -780,14 +780,17 @@ bayrad_hbar(Driver * drvthis, int x, int y, int len, int promille, int options)
/////////////////////////////////////////////////////////////////
// Places an icon on screen
//
MODULE_EXPORT void
MODULE_EXPORT int
bayrad_icon(Driver * drvthis, int x, int y, int icon)
{
switch( icon ) {
case ICON_BLOCK_FILLED:
bayrad_chr( drvthis, x, y, 0xFF );
break;
default:
return -1; /* Let the core do other icons */
}
return 0;
}