small change to map grid service

This commit is contained in:
UbitUmarov
2024-01-26 18:46:45 +00:00
parent c0082b4c3f
commit 45e600e4fb

View File

@@ -141,11 +141,11 @@ namespace OpenSim.Services.MapImageService
// this multi-resolution routine to be called a zillion times an causes much CPU // this multi-resolution routine to be called a zillion times an causes much CPU
// time to be spent creating multi-resolution tiles that will be replaced when // time to be spent creating multi-resolution tiles that will be replaced when
// the next maptile arrives. // the next maptile arrives.
private readonly struct MapToMultiRez private struct MapToMultiRez
{ {
public readonly int x; public int x;
public readonly int y; public int y;
public readonly UUID scopeID; public UUID scopeID;
public mapToMultiRez(int pX, int pY, UUID pscopeID) public mapToMultiRez(int pX, int pY, UUID pscopeID)
{ {
x = pX; x = pX;