| 1099 | } |
| 1100 | |
| 1101 | void ChangeLight(int i, int x, int y, int r) |
| 1102 | { |
| 1103 | if (lightflag || i == -1) { |
| 1104 | return; |
| 1105 | } |
| 1106 | |
| 1107 | LightList[i]._lunflag = 1; |
| 1108 | LightList[i]._lunx = LightList[i]._lx; |
| 1109 | LightList[i]._luny = LightList[i]._ly; |
| 1110 | LightList[i]._lunr = LightList[i]._lradius; |
| 1111 | LightList[i]._lx = x; |
| 1112 | LightList[i]._ly = y; |
| 1113 | LightList[i]._lradius = r; |
| 1114 | dolighting = TRUE; |
| 1115 | } |
| 1116 | |
| 1117 | void ProcessLightList() |
| 1118 | { |
no outgoing calls
no test coverage detected