| 1069 | } |
| 1070 | |
| 1071 | void ChangeLightXY(int i, int x, int y) |
| 1072 | { |
| 1073 | if (lightflag || i == -1) { |
| 1074 | return; |
| 1075 | } |
| 1076 | |
| 1077 | LightList[i]._lunflag = 1; |
| 1078 | LightList[i]._lunx = LightList[i]._lx; |
| 1079 | LightList[i]._luny = LightList[i]._ly; |
| 1080 | LightList[i]._lunr = LightList[i]._lradius; |
| 1081 | LightList[i]._lx = x; |
| 1082 | LightList[i]._ly = y; |
| 1083 | dolighting = TRUE; |
| 1084 | } |
| 1085 | |
| 1086 | void ChangeLightOff(int i, int x, int y) |
| 1087 | { |
no outgoing calls
no test coverage detected