Gets the width of this lightmap_info handle
| 173 | |
| 174 | // Gets the width of this lightmap_info handle |
| 175 | int lmi_w(int handle) { |
| 176 | if (!LightmapInfo[handle].used) { |
| 177 | Int3(); // Get Jason |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | return (LightmapInfo[handle].width); |
| 182 | } |
| 183 | |
| 184 | // Gets the height of this lightmap_info handle |
| 185 | int lmi_h(int handle) { |
no outgoing calls
no test coverage detected