aboutsummaryrefslogtreecommitdiff
path: root/sky/mouse.cpp
diff options
context:
space:
mode:
authorMax Horn2003-07-07 00:14:16 +0000
committerMax Horn2003-07-07 00:14:16 +0000
commit41912bc68578b5e68805f01fc36e79d91691c8cd (patch)
tree710d9f7be63a84117770ff5260b1053ce0b11ee3 /sky/mouse.cpp
parent3dca18c935682746545f219e715a46fd4cc10852 (diff)
downloadscummvm-rg350-41912bc68578b5e68805f01fc36e79d91691c8cd.tar.gz
scummvm-rg350-41912bc68578b5e68805f01fc36e79d91691c8cd.tar.bz2
scummvm-rg350-41912bc68578b5e68805f01fc36e79d91691c8cd.zip
use our standard cast style
svn-id: r8824
Diffstat (limited to 'sky/mouse.cpp')
-rw-r--r--sky/mouse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sky/mouse.cpp b/sky/mouse.cpp
index a677a1f598..73bcd107ec 100644
--- a/sky/mouse.cpp
+++ b/sky/mouse.cpp
@@ -234,7 +234,7 @@ void SkyMouse::pointerEngine(void) {
uint32 currentListNum = SkyLogic::_scriptVariables[MOUSE_LIST_NO];
uint16 *currentList;
do {
- currentList = (uint16*)SkyState::fetchCompact(currentListNum);
+ currentList = (uint16 *)SkyState::fetchCompact(currentListNum);
while ((*currentList != 0) && (*currentList != 0xFFFF)) {
uint16 itemNum = *currentList;
Compact *itemData = SkyState::fetchCompact(itemNum);