Fix a couple of typos

LSLKeyTest
Melanie Thielker 2016-03-05 22:22:09 +01:00
parent 15b9601393
commit 110297793c
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ namespace OpenSim.Region.ClientStack.Linden
if( numberInstances > ObjectLinkedPartsMax )
{
error = "Model whould have more than " + ObjectLinkedPartsMax.ToString() + " linked prims";
error = "Model would have more than " + ObjectLinkedPartsMax.ToString() + " linked prims";
return false;
}

View File

@ -298,7 +298,7 @@ namespace OpenSim.Services.MapImageService
{
// Create a new output tile with a transparent background
Bitmap bm = new Bitmap(IMAGE_WIDTH, IMAGE_WIDTH, PixelFormat.Format24bppRgb);
//bm.MakeTransparent(); // 24bpp does not have transparency, this whould make it 32bpp
//bm.MakeTransparent(); // 24bpp does not have transparency, this would make it 32bpp
return bm;
}
}