Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Issue 30  (Read 1912 times)

0 Members and 1 Guest are viewing this topic.

Mossar

  • Newbie
  • *
  • Posts: 15
    • View Profile
Issue 30
« on: May 02, 2013, 12:13:52 am »
I've read a lot of topics about that problem, about crash after closing the application. And I don't know what is the solution, what should I do to fix it?

Should I add any .dll file? Change something in SFML? Can somebody help me with it?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Issue 30
« Reply #1 on: May 02, 2013, 08:22:43 am »
I'm afraid you can't do anything.
Laurent Gomila - SFML developer

Mossar

  • Newbie
  • *
  • Posts: 15
    • View Profile
Re: Issue 30
« Reply #2 on: May 03, 2013, 01:07:40 am »
Okay. Can I ask you for something? Are you working on solving that problem? I don't know.. fixing it in next version or something like that?

So I understand that the only option to give my application music is to include other directory?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Issue 30
« Reply #3 on: May 03, 2013, 08:07:40 am »
Does linking SFML statically solve the problem?
Laurent Gomila - SFML developer

Krateros

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: Issue 30
« Reply #4 on: May 09, 2013, 11:44:14 pm »
I had the same problem and found a solution. I added the whole Audio module (src & headers), opengal32 and sndfile libraries in a folder of my project. Then changed the #include <SFML/Audio/file.hpp> preprosesors in each file to relative to that folder, so the Audio module is part of my project. Also #defined SFML_AUDIO_API in blank. Now audio works fine without any error if #including the Audio.hpp of that folder.
in Audio files: #include <SFML/Audio/SoundBuffer.hpp> -> #include "SoundBuffer.hpp"
in Export.hpp: #define SFML_AUDIO_API
in main.cpp: #include <SFML/Audio.hpp> -> #include "SFML/Audio.hpp"

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Issue 30
« Reply #5 on: May 10, 2013, 09:45:02 am »
It's not really a fix, and it works only because you are lucky.
Laurent Gomila - SFML developer

 

anything