trunk/src/mess/drivers/fmtowns.c
| r30856 | r30857 | |
| 1045 | 1045 | switch(m_towns_mouse_output) |
| 1046 | 1046 | { |
| 1047 | 1047 | case MOUSE_X_HIGH: |
| 1048 | | ret |= ((m_towns_mouse_x & 0xf0)); |
| 1048 | ret |= ((m_towns_mouse_x & 0xf0) >> 4); |
| 1049 | 1049 | break; |
| 1050 | 1050 | case MOUSE_X_LOW: |
| 1051 | | ret |= ((m_towns_mouse_x & 0x0f)); |
| 1051 | ret |= (m_towns_mouse_x & 0x0f); |
| 1052 | 1052 | break; |
| 1053 | 1053 | case MOUSE_Y_HIGH: |
| 1054 | | ret |= ((m_towns_mouse_y & 0xf0)); |
| 1054 | ret |= ((m_towns_mouse_y & 0xf0) >> 4); |
| 1055 | 1055 | break; |
| 1056 | 1056 | case MOUSE_Y_LOW: |
| 1057 | | ret |= ((m_towns_mouse_y & 0x0f)); |
| 1057 | ret |= (m_towns_mouse_y & 0x0f); |
| 1058 | 1058 | break; |
| 1059 | 1059 | case MOUSE_START: |
| 1060 | 1060 | case MOUSE_SYNC: |