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

Pages: [1]
1
SFML projects / Re: memoria
« on: September 08, 2013, 02:00:54 pm »
Hey, your game is impossible :D

2
SFML projects / Re: My first space shooter
« on: July 27, 2013, 03:04:48 pm »
Amazing game for first project.I really liked the graphics the boss is so cute :) .
Keep improving the game it can be great.

3
SFML projects / Re: Cloud Wars - WIP
« on: July 18, 2013, 09:45:24 am »
I've played this game a long time ago.It's cool.Basicly when i played it was made in GameMaker.

4
Yes, i like it.It's awsome.

5
SFML projects / Re: Zombination - 2D survival zombie shooter
« on: July 16, 2013, 08:38:39 pm »
It looks very nice.I like it.I am waiting for the release.Keep going.Please post more info.I want to see the website.

6
Seems very good to me.Keep going.

7
General / Re: Problems with libstdc++-6.dll
« on: July 07, 2013, 06:00:59 pm »
I fixed this problem, but now it crases.Please help me add me on skype:lorddark4754

8
General / Re: SFML Crashes
« on: July 07, 2013, 05:59:46 pm »
It still crashes i don't know what is the problem.Please add me on skype:lorddrark4754.

9
General / Re: SFML Crashes
« on: July 07, 2013, 04:43:22 pm »
This is screenshots of my settings:
1. http://prikachi.com/images.php?images/101/6305101k.png
2. http://prikachi.com/images.php?images/103/6305103K.png
3. http://prikachi.com/images.php?images/109/6305109V.png
4. http://prikachi.com/images.php?images/111/6305111g.png
This is the source code of the example tutorial:
#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;
}
 
That's all the thing that i am changing from the default.
For more information:
My Code::Blocks from herehttp://sourceforge.net/projects/codeblocks/files/Binaries/12.11/Windows/codeblocks-12.11mingw-setup.exe/download.This one : codeblocks-12.11mingw-setup.exe
SFML from herehttp://www.sfml-dev.org/download/sfml/2.0/SFML-2.0-windows-gcc-4.7-mingw-32bits.zip.That one : GCC 4.7 MinGW (DW2) - 32 bits.

10
General / SFML Crashes
« on: July 07, 2013, 12:01:41 pm »
Hello, everybody.
I am new to SFML.I have problem with it.
My problem is when i try to compile and run it crashes.I use Code::Blocks (MinGW).
My executable code is the example from the main sfml site.I did all things for example:sfml-system.........and so on.I did the directories things.i copied and pasted the graphics and other .dll files.Please help me to solve this problem.
Thank in advance.

11
General / Re: Problems with libstdc++-6.dll
« on: July 06, 2013, 05:16:39 pm »
All linker settings are correct, I triple-checked them.Still need help. :'(

12
General / Re: Problems with libstdc++-6.dll
« on: July 06, 2013, 05:01:36 pm »
Ok, I switched to the TDM version of SFML. But now my program crashes. :'(
Any idea what may be the problem here?

13
General / Problems with libstdc++-6.dll
« on: July 06, 2013, 03:55:08 pm »
Hello everybody, I'm new here. I've recently started studying C++ and want to learn some graphics library. And I thought SFML would be a good choice. Now, let's get down to the problem.
I followed the tutorial on installing SFML on Code::Blocks several times, each time with a fresh install of Code::Blocks, but once I try to compile my code, it always says "The procedure entry point__gxx_personality_v0 could not be located in the dynamic link library libstdc++-6.dll". I've been searching the Internet for a solution quite awhile now, but nothing seems to work. So that's why I'm asking here. The code I'm trying to compile is the example code in the Code::Blocks setup tutorial.


Thanks in advance.

Pages: [1]