draws a hotspot with the on bitmap
| 950 | |
| 951 | // draws a hotspot with the on bitmap |
| 952 | void DrawHotSpotOn(int hotspot) { |
| 953 | if (!hotspot_bitmaps) |
| 954 | return; |
| 955 | if ((hotspot < 0) || (hotspot >= hotspotmap.num_of_hotspots)) |
| 956 | return; |
| 957 | TelCom_BltToScreen(HotSpotL(hotspot), HotSpotT(hotspot), &hotspot_bitmaps[hotspot]); |
| 958 | } |
| 959 | |
| 960 | // --------------------------------------------------------------------------- |
| 961 | // performs 16-bit blts. |
no test coverage detected