aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain
diff options
context:
space:
mode:
authorUbitUmarov2016-08-21 00:25:32 +0100
committerUbitUmarov2016-08-21 00:25:32 +0100
commit73719b2efce8c1d22d154d4530e98b2ed5bc2bae (patch)
tree0e3e60d04a7d77c89b4161a27d8a60aba24a20f2 /OpenSim/Region/CoreModules/World/Terrain
parent make the case llCollisionSound("",1.0) more clear its retunring to default s... (diff)
downloadopensim-SC_OLD-73719b2efce8c1d22d154d4530e98b2ed5bc2bae.zip
opensim-SC_OLD-73719b2efce8c1d22d154d4530e98b2ed5bc2bae.tar.gz
opensim-SC_OLD-73719b2efce8c1d22d154d4530e98b2ed5bc2bae.tar.bz2
opensim-SC_OLD-73719b2efce8c1d22d154d4530e98b2ed5bc2bae.tar.xz
fix terrain BMP image format on SaveStream mantis: 8001
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Terrain')
-rw-r--r--OpenSim/Region/CoreModules/World/Terrain/FileLoaders/BMP.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/BMP.cs b/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/BMP.cs
index fb57c82..8b95a33 100644
--- a/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/BMP.cs
+++ b/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/BMP.cs
@@ -61,7 +61,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain.FileLoaders
61 { 61 {
62 Bitmap colours = CreateGrayscaleBitmapFromMap(map); 62 Bitmap colours = CreateGrayscaleBitmapFromMap(map);
63 63
64 colours.Save(stream, ImageFormat.Png); 64 colours.Save(stream, ImageFormat.Bmp);
65 } 65 }
66 66
67 /// <summary> 67 /// <summary>