aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/floor.cpp
diff options
context:
space:
mode:
authoryinsimei2017-07-11 00:07:40 +0200
committerEugene Sandulenko2017-07-13 18:27:45 +0200
commit9d349e794e272b6e7d8fe1655b7cc3bfa2253efb (patch)
tree1415a7a598c5ea76a870c880671523610ac17fac /engines/sludge/floor.cpp
parent38262ad6301953b373e3ef4341c2d1050bcd6981 (diff)
downloadscummvm-rg350-9d349e794e272b6e7d8fe1655b7cc3bfa2253efb.tar.gz
scummvm-rg350-9d349e794e272b6e7d8fe1655b7cc3bfa2253efb.tar.bz2
scummvm-rg350-9d349e794e272b6e7d8fe1655b7cc3bfa2253efb.zip
SLUDGE: code formatting for **
Diffstat (limited to 'engines/sludge/floor.cpp')
-rw-r--r--engines/sludge/floor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sludge/floor.cpp b/engines/sludge/floor.cpp
index 15da333def..591a5ff321 100644
--- a/engines/sludge/floor.cpp
+++ b/engines/sludge/floor.cpp
@@ -174,7 +174,7 @@ bool setFloor(int fileNum) {
// Now build the movement martix
currentFloor->matrix = new int *[currentFloor->numPolygons];
- int * * distanceMatrix = new int *[currentFloor->numPolygons];
+ int **distanceMatrix = new int *[currentFloor->numPolygons];
if (!checkNew(currentFloor->matrix))
return false;