mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-10 19:10:25 +00:00
Some compile fixes for older versions of C++ on windows
This commit is contained in:
+2
-2
@@ -32,8 +32,8 @@ float Map::FindBestZ(Vertex &start, Vertex *result) const {
|
||||
result = &tmp;
|
||||
|
||||
start.z += RuleI(Map, FindBestZHeightAdjust);
|
||||
Vertex from = { start.x, start.y, start.z };
|
||||
Vertex to = { start.x, start.y, BEST_Z_INVALID };
|
||||
Vertex from(start.x, start.y, start.z);
|
||||
Vertex to(start.x, start.y, BEST_Z_INVALID);
|
||||
float hit_distance;
|
||||
bool hit = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user