Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Eclipse Nightly Error Sound off


clark
 Share

Recommended Posts

Hi , on Eclipse Nightly 3.0 there is a problem , when i go to the option then i put Sound to off
It make the game crash … i searched to know what cause it i didn't found :( ...

help me please to fix it
Link to comment
Share on other sites

@jcsnider:

> Awesome thanks for the reports everyone!
> I AM going to release a 3.1 here in several days for those who want a debugged version… however.. I will try to keep this post updated with bug fixes for those who want to begin their games....
>
>
> >! >! Find Public Sub StopAllSounds
> Replace it with this…
> ```
> Public Sub StopAllSounds()
>     Dim i As Long
>     For i = 1 To Max_Sounds
>         If Sounds(i).Handle > 0 Then
>             FSOUND_StopSound Sounds(i).Channel
>             FSOUND_Sample_Free Sounds(i).Handle
>         End If
>     Next
>    
>     RemoveAllMapSounds
> End Sub
> ```
> >!
> >! Find this
> ```
>                                 Case WEATHER_TYPE_RAIN
>                                     frmEditor_Events.lstCommands.AddItem indent & "@>" & "Set Weather [Rain - Intensity: " & CStr(tmpEvent.Pages(curPageNum).CommandList(curlist).Commands(i).Data2) & "]"
> ```Under it add
> ```
>                                 Case WEATHER_TYPE_HAIL
>                                     frmEditor_Events.lstCommands.AddItem indent & "@>" & "Set Weather [Hail - Intensity: " & CStr(tmpEvent.Pages(curPageNum).CommandList(curlist).Commands(i).Data2) & "]"
> ```

There you go.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...