From 0c681181b80d77f11963ec7b5705db6364e403ae Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 16 Dec 2003 14:59:29 +0000 Subject: fix compilation on BE systems svn-id: r11685 --- sword1/mouse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sword1/mouse.cpp b/sword1/mouse.cpp index ffdf5d257a..bb4896bc0a 100644 --- a/sword1/mouse.cpp +++ b/sword1/mouse.cpp @@ -41,7 +41,7 @@ SwordMouse::SwordMouse(OSystem *system, ResMan *pResMan, ObjectMan *pObjMan) { for (uint8 cnt = 0; cnt < 17; cnt++) { _pointers[cnt] = (MousePtr*)_resMan->openFetchRes(MSE_POINTER + cnt); #ifdef SCUMM_BIG_ENDIAN - uint16 *data = (uint16*)pointers[cnt]; + uint16 *data = (uint16*)_pointers[cnt]; for (uint8 endCnt = 0; endCnt < 5; endCnt++) data[endCnt] = READ_LE_UINT16(data + endCnt); #endif -- cgit v1.2.3