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

Pages: [1]
1
General / App Currupted buffer overflow
« on: November 16, 2010, 12:21:11 pm »
i've done the second. but i will try to do it how its described in the first way.

edit: the same problem

2
General / App Currupted buffer overflow
« on: November 16, 2010, 06:48:25 am »
Projects/tutorials/tutorials (tutorials is the projekt name)  here are my libs.

3
General / App Currupted buffer overflow
« on: November 15, 2010, 08:49:30 pm »
i use visual 2008 express edition and i only use -d lib's in debug mode.
I've read that before so i installed it and deinstalled 2010.

now there is a new error
Link1104 Data sfml-system-d.lib;sfml-window-d.lib couldn't be opened
all dll's are in the project directory.

4
General / App Currupted buffer overflow
« on: November 15, 2010, 08:10:56 pm »
Hi,

I know that many people had that problem and i did everything u said in the other threads but i cant solve the problem.

I use the -d libs and included everything that was said in the tutorial.

Code: [Select]

#include <SFML/System.hpp>
#include <SFML/Window.hpp>
#include <iostream>

using namespace std;
using namespace sf;

int main()
{
Window App(VideoMode(800,600,32), "SFML Window");
App.Create(VideoMode(800,600,32),"SFML Window");

    // Start main loop
while (App.IsOpened())
    {
Event Event;
while(App.GetEvent(Event))
{

if (Event.Type == Event::Closed)
App.Close();


if ((Event.Type == Event::KeyPressed) && (Event.Key.Code == Key::Escape))
App.Close();

}
        App.Display();
    }

    return EXIT_SUCCESS;
}


thx for your help.

Pages: [1]