small change to map grid service

This commit is contained in:
UbitUmarov 2024-01-26 18:46:45 +00:00
parent c0082b4c3f
commit 45e600e4fb
1 changed files with 4 additions and 4 deletions

View File

@ -141,11 +141,11 @@ namespace OpenSim.Services.MapImageService
// 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
// the next maptile arrives.
private readonly struct MapToMultiRez
private struct MapToMultiRez
{
public readonly int x;
public readonly int y;
public readonly UUID scopeID;
public int x;
public int y;
public UUID scopeID;
public mapToMultiRez(int pX, int pY, UUID pscopeID)
{
x = pX;