| 176 | } |
| 177 | |
| 178 | void CMouseControl::SetAbsVirtualResolution (float xIni, float yIni, float width, float height) |
| 179 | { |
| 180 | assert (xIni>= 0 && yIni>= 0 && width> 0 && height> 0); |
| 181 | |
| 182 | m_VirtualXIni= xIni; |
| 183 | m_VirtualYIni= yIni; |
| 184 | m_VirtualWidth= width; |
| 185 | m_VirtualHeight= height; |
| 186 | } |
| 187 | |
| 188 | void CMouseControl::SetWorkingArea (float leftPercent, float rightPercent, float topPercent, float bottomPercent) |
| 189 | { |
nothing calls this directly
no outgoing calls
no test coverage detected