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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - whynoob

Pages: [1]
1
General / Re: error in installing SFML
« on: October 15, 2013, 02:27:11 am »
151 537 189
65snw2

2
General / Re: error in installing SFML
« on: October 15, 2013, 02:17:55 am »
i just did everything like the tut. but i still have 17 errors.
sorry if i am being retarded. Ixrec can you come on team viewer and help me with it

3
General / Re: error in installing SFML
« on: October 15, 2013, 02:00:53 am »
problem is i already used those settings, however it wasnt working

4
General / Re: error in installing SFML
« on: October 15, 2013, 01:55:51 am »
i uploaded the screen shots can u please look at them

5
General / Re: error in installing SFML
« on: October 15, 2013, 01:43:22 am »
sorry lol, i didnt put the preprocessor and it worked or one of the others and right after it worked it crashed, so i
then i rechecked the setting and did it properly well atleast i think i did it properly

6
General / error in installing SFML
« on: October 15, 2013, 01:22:23 am »
i installed the files and configured everything properly, it work once then crashed and i realized some settings were missing so i did them too. i am using windows 8, visual studio 2012
then it doesnt work any more, these are the errors i get
Error   1   error LNK2019: unresolved external symbol "public: __thiscall sf::String::String(char const *,class std::locale const &)" (??0String@sf@@QAE@PBDABVlocale@std@@@Z) referenced in function _main   C:\Users\%USERPROFILE%\Documents\Visual Studio 2012\Projects\Game\Source.obj   Game

i get 17 of those errors
i am trying this code
#include <SFML/Graphics.hpp>

int main()
{
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}

sorry if its a stupid error, but i am a noob

Pages: [1]
anything