summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Radar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Radar.cpp b/src/Radar.cpp
index e9fce51e..dd94341a 100644
--- a/src/Radar.cpp
+++ b/src/Radar.cpp
@@ -216,10 +216,10 @@ void CRadar::StreamRadarSections(int x, int y)
{
for (int i = 0; i < 8; ++i) {
for (int j = 0; j < 8; ++j) {
- if (i >= x - 1 && i <= x + 1 && j >= y - 1 && j <= y + 1)
- RequestMapSection(x, y);
+ if ((i >= x - 1 && i <= x + 1) && (j >= y - 1 && j <= y + 1))
+ RequestMapSection(i, j);
else
- RemoveMapSection(x, y);
+ RemoveMapSection(i, j);
};
};
}