Skip to content
Snippets Groups Projects
Commit 65384d0d authored by Monroe Linden's avatar Monroe Linden
Browse files

Fix for build error in media_plugin_example.cpp.

parent ce242821
No related branches found
No related tags found
No related merge requests found
...@@ -183,7 +183,7 @@ void MediaPluginExample::receiveMessage( const char* message_string ) ...@@ -183,7 +183,7 @@ void MediaPluginExample::receiveMessage( const char* message_string )
if ( message_name == "init" ) if ( message_name == "init" )
{ {
// Plugin gets to decide the texture parameters to use. // Plugin gets to decide the texture parameters to use.
message.setMessage( LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params" ); LLPluginMessage message( LLPLUGIN_MESSAGE_CLASS_MEDIA, "texture_params" );
message.setValueS32( "default_width", mWidth ); message.setValueS32( "default_width", mWidth );
message.setValueS32( "default_height", mHeight ); message.setValueS32( "default_height", mHeight );
message.setValueS32( "depth", mDepth ); message.setValueS32( "depth", mDepth );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment