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

Pages: [1]
1
General / Error when exit - SFML + (VS2008 and VS2010)
« on: February 26, 2011, 06:04:40 pm »
You have to recompile SFML.

2
General / Error when exit - SFML + (VS2008 and VS2010)
« on: February 25, 2011, 05:10:50 pm »
Are you linking the correct libraries corresponding to your compilation mode and your generation code mode ?

Quote
i always get error

what's the exact error ?

can you give some code ?

3
General / Buffer overload in release build
« on: February 24, 2011, 10:05:50 pm »
Code: [Select]
First-chance exception at 0x70760149 in Paki Pong.exe: 0xC0000005: Access violation reading location 0x64646170.

i had the same error when i hadn't recompiled SFML.
so, recompile SFML with cmake, link the correct libraries and it will run.

4
General discussions / Static vs Dynamic
« on: February 23, 2011, 01:58:02 pm »
When you use static libraries, the libraries are compiled into the executable, increasing its size. When you change the libraries' code, you must recompile your program entirely. no dll's are needed in this case.

when you use dynamic libraries, the libraries are compiled into a .dll file.
when you update the libraries' code, you have to recompile only the libraries, and not your program entirely.

you should always use dynamic libraries, and provide the dll's files.

(appologies for my english, i'm French)

Pages: [1]