Yes that fixed it!<br><br>Thanks<br><br>/HH<br><br><div class="gmail_quote">2012/5/20 False.Genesis <span dir="ltr">&lt;<a href="mailto:false.genesis@googlemail.com" target="_blank">false.genesis@googlemail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I noticed that when I built v1.1.3 locally I see no subtitles on the<br>
first screen (naija_intro-music.txt) but it works flawlessy for every<br>
other screen/song. There was no such problems on v1.1.1. Does anyone<br>
else experience this or is it local to my build?<br>
</blockquote>
<br>
Confirmed, have the same problem. Good catch, never noticed this.<br>
</blockquote>
<br>
<br>
<br></div>
This culprit is most likely this commit:<br>
<a href="http://hg.icculus.org/icculus/aquaria/rev/203af0d613b4" target="_blank">http://hg.icculus.org/icculus/<u></u>aquaria/rev/203af0d613b4</a><br>
<br>
- A prev. call to Game::removeState() would hide the subs player; it was never made visible again until the next Game::applyState()<br>
<br>
<br>
Fix below:<br>
<br>
<br>
@@ -64,10 +64,12 @@ void Intro2::applyState()<br>
<br>
        ActionMapper::clearActions();<br>
<br>
        //addAction(MakeFunctionEvent(<u></u>Intro2, skipIntro), KEY_ESCAPE, 0);<br>
<br>
+       dsq-&gt;subtitlePlayer.show(0.5f)<u></u>;<br>
+<br>
        core-&gt;resetCamera();<br>
        <br>
        dsq-&gt;jiggleCursor();<br>
<br>
        dsq-&gt;setCutscene(1,1);<br>
<br>
<br>
(Do we need fade-out logic on Intro2::removeState() ? Don&#39;t think so.<div class="HOEnZb"><div class="h5"><br>
______________________________<u></u>_________________<br>
aquaria mailing list<br>
<a href="mailto:aquaria@icculus.org" target="_blank">aquaria@icculus.org</a><br>
<a href="http://icculus.org/mailman/listinfo/aquaria" target="_blank">http://icculus.org/mailman/<u></u>listinfo/aquaria</a><br>
</div></div></blockquote></div><br>