returns left edge of hotspot
| 1001 | |
| 1002 | // returns left edge of hotspot |
| 1003 | int HotSpotL(int hotspot) { |
| 1004 | if (hotspot >= hotspotmap.num_of_hotspots) |
| 1005 | return -1; |
| 1006 | return hotspotmap.hs[hotspot].x[0].start; |
| 1007 | } |
| 1008 | |
| 1009 | // returns width of hotspot |
| 1010 | int HotSpotW(int hotspot) { |
no outgoing calls
no test coverage detected