2.5 Ghost Compile Fix for windows. Patch by b333rt. Thanks!

This commit is contained in:
Thomas Dinges 2009-09-16 17:13:03 +00:00
parent 7c5695c801
commit 6b5ba70059

@ -720,15 +720,15 @@ void GHOST_WindowWin32::processWin32TabletEvent(WPARAM wParam, LPARAM lParam)
switch (pkt.pkCursor) {
case 0: /* first device */
case 3: /* second device */
m_tabletData->Active = 0; /* puck - not yet supported */
m_tabletData->Active = GHOST_kTabletModeNone; /* puck - not yet supported */
break;
case 1:
case 4:
m_tabletData->Active = 1; /* stylus */
m_tabletData->Active = GHOST_kTabletModeStylus; /* stylus */
break;
case 2:
case 5:
m_tabletData->Active = 2; /* eraser */
m_tabletData->Active = GHOST_kTabletModeEraser; /* eraser */
break;
}
if (m_maxPressure > 0) {