Skip to content
Snippets Groups Projects
Commit 846d0d33 authored by Andrey Kleshchev's avatar Andrey Kleshchev
Browse files

SL-13390 Fix Openal Builds

parent 9b1c8534
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ LLAudioEngine_OpenAL::~LLAudioEngine_OpenAL()
bool LLAudioEngine_OpenAL::init(const S32 num_channels, void* userdata, const std::string &app_title)
{
mWindGen = NULL;
LLAudioEngine::init(num_channels, userdata);
LLAudioEngine::init(num_channels, userdata, app_title);
if(!alutInit(NULL, NULL))
{
......
......@@ -385,6 +385,7 @@ void LLProgressView::initLogos()
const S32 default_pad = 15;
S32 icon_width, icon_height;
S32 pad_y = 0;
// We don't know final screen rect yet, so we can't precalculate position fully
LLTextBox *logos_label = getChild<LLTextBox>("logos_lbl");
......@@ -404,7 +405,7 @@ void LLProgressView::initLogos()
// with no internal paddings so it gets additional padding
icon_width = 77;
icon_height = 21;
S32 pad_y = 4;
pad_y = 4;
texture_start_x++;
loadLogo(temp_str + "fmod_logo.png",
image_codec,
......
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