diff options
author | MW | 2008-07-09 11:01:26 +0000 |
---|---|---|
committer | MW | 2008-07-09 11:01:26 +0000 |
commit | 7db2e19500963620e59d0a319088d69faf297ac0 (patch) | |
tree | 43b6e6bf7bffafa4abf3bb0ca21eb2cb58657977 /OpenSim/Framework | |
parent | Patch from Mike which removes a lexer warning in the LSL compiler. (diff) | |
download | opensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.zip opensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.tar.gz opensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.tar.bz2 opensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.tar.xz |
corrected the params types on IClientAPI.SendParcelMediaCommand. the command parameter should be set to the the ParcelMediaCommandEnum value. While flags seems to need to be set to (uint)(1<<[value of the command enum])
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 8c9aee7..b969a8d 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -642,7 +642,7 @@ namespace OpenSim.Framework | |||
642 | 642 | ||
643 | #region Parcel Methods | 643 | #region Parcel Methods |
644 | 644 | ||
645 | void SendParcelMediaCommand(ParcelMediaCommandEnum flags, uint command, float time); | 645 | void SendParcelMediaCommand(uint flags, ParcelMediaCommandEnum command, float time); |
646 | 646 | ||
647 | void SendParcelMediaUpdate(string mediaUrl, LLUUID mediaTextureID, | 647 | void SendParcelMediaUpdate(string mediaUrl, LLUUID mediaTextureID, |
648 | byte autoScale, string mediaType, string mediaDesc, int mediaWidth, int mediaHeight, | 648 | byte autoScale, string mediaType, string mediaDesc, int mediaWidth, int mediaHeight, |