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 - FilipCodes

Pages: [1]
1
General / Re: ERROR
« on: November 25, 2016, 07:15:59 pm »
still

C:\Users\myName\Desktop\file\ sfml\main.cpp|1|fatal error: SFML/Graphics.hpp: No such file or directory|

2
General / Re: ERROR
« on: November 25, 2016, 02:24:36 pm »
||=== Build file: "no target" in "no project" (compiler: unknown) ===|
C:\Users\myName\Desktop\file\ sfml\main.cpp|1|fatal error: SFML/graphics.hpp: No such file or directory|
||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|

3
General / Re: ERROR
« on: November 25, 2016, 12:14:41 am »
And now I got error
 ||=== Build: Release in  sfml (compiler: GNU GCC Compiler) ===|
C:\Users\myName\Desktop\file\ sfml\main.cpp||In function 'int main()':|
C:\Users\myName\Desktop\file\ sfml\main.cpp|20|error: 'class sf::RenderWindow' has no member named 'disp1lay'|
||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 1 second(s)) ===|

And program is:
#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.disp1lay();
    }

    return 0;
}
in code block in c++.

4
General / Re: ERROR
« on: November 25, 2016, 12:09:27 am »






5
General / ERROR
« on: October 28, 2016, 11:02:36 am »
I'm using windows 10.
When I try to run examle code I get this error:

||=== Build: Debug in  sfml (compiler: GNU GCC Compiler) ===|
D:\SFML-2.4.0\lib\libsfml-system-s-d.a(String.cpp.obj):C:\Dev\MinGW32-TDM492\lib\gcc\mingw32\4.9.2\include\c++\bits\basic_string.h|324|undefined reference to `std::__throw_out_of_range_fmt(char const*, ...)'|
||error: ld returned 1 exit status|
||=== Build failed: 2 error(s), 0 warning(s) (0 minute(s), 1 second(s)) ===|

please can you help me?  :'( :'( :'(

Pages: [1]