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

Pages: 1 2 3 [4]
46
Feature requests / sorry
« on: September 18, 2007, 12:33:33 am »
lol I found it like 5 mins after I post this topic lol. Sorry. thanks for the responce :)

47
Feature requests / Hide Mouse
« on: September 17, 2007, 10:02:11 pm »
Hey I don't know if this is a feature yet (and if it is ignore this post) but can you add in a feature which hides or "Scares" the mouse pointer?

48
Graphics / Problems loading Images
« on: September 17, 2007, 03:48:28 am »
I figured out a solution to loading some images.
The problem: I was trying trying to load a .jpg image in my program and i kept getting this run time error "Fail to load image '{directory}/image.jpg'"
The solution: I had forgotten that I originally saved the image as a png, and then just changed the extension to .jpg for testing if sfml would load different images for me... So since i had changed the image via just changing the extention sfml could not read the image because it was not formated to be a .jpg, so I just opened the image up in paint.NET and saved as the image as a .jpg and that did the trick.

Now my program loads the .jpg fine...

Hope this helps anyone who might of had the same problem.

49
Graphics / I know how to resolve on of your warnings
« on: September 17, 2007, 03:37:09 am »
this warning:
 Warning   2   warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library   test01SFML  


if you go to this web site there is a table of libs which you can enter in one of your properties menus to turn off some libs which conflict with sfml libs..

http://www.stanford.edu/~yljiang/pages/GPRS%20Linking%20Warning.htm

copy the apropriate line of libs and paste them into ignore specific libs, which can be found in project->properties->linker->input

50
Graphics / warning LNK4099: PDB 'vc80.pdb' was not found with
« on: September 17, 2007, 12:46:30 am »
Hey has anyone gotten this warning?
If so how have you fixed it so that it wont show up?

51
General / Figured the out the last warning
« on: September 10, 2007, 01:09:32 am »
Hey lol I hope someone else will benefit from all my posts... I figure out how to solve the last warning the

Warning 2 warning LNK4099: PDB 'vc80.pdb' was not found with ; linking object as if no debug info sfml-audio-d.lib

 I just changed all the Linker/Input/Added Dependants library to their none debug ones ie. sfml-Graphics.lib as oppose to sfml-Graphics-d.lib and then set configurations of the project to Release then re-built the project and all the warnings went away. :)

O some other settings too where
(C/C++)/Code Generation/runtime libraries set to Multi-threaded DLL (/MD)
and
Linker/general/Endable Incrementals Linking set to No (/INCREMENTAL:NO)


But the problem still holds when I try and compile the code in debug mode... it just gets fixed when I put in on release and the settings above

52
General / One Warning Fixed
« on: September 10, 2007, 12:15:44 am »
Here is the web site that tells you how to fix this error

Warning 1 warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library

http://www.stanford.edu/~yljiang/pages/GPRS%20Linking%20Warning.htm

Just find in the table what run-time lib you want to use ie.

Debug Multithreaded using DLL (msvcrtd.lib)

and then the list of libs to type into your  /Project/Setting/Link/Input/Ignore Specific Libraries

libc.lib, libcmt.lib, msvcrt.lib, libcd.lib, libcmtd.lib


I still dont know what will solve this error tho

Warning   2   warning LNK4099: PDB 'vc80.pdb' was not found with 'C:\Program Files\Microsoft Visual Studio 8\VC\lib\sfml-audio-d.lib' or at 'c:\Documents and Settings\Jeb\Desktop\test pong\Pong\debug\vc80.pdb'; linking object as if no debug info   sfml-audio-d.lib

53
General / Warnings...
« on: September 09, 2007, 11:57:34 pm »
Hey I get these warnings of linker errors when i compile

Warning   1   warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library   Pong   

Warning   3   warning LNK4099: PDB 'vc80.pdb' was not found with 'C:\Program Files\Microsoft Visual Studio 8\VC\lib\sfml-Graphics-d.lib' or at 'c:\Documents and Settings\Jeb\Desktop\test pong\Pong\debug\vc80.pdb'; linking object as if no debug info   sfml-Graphics-d.lib   


I know I have used /NODEFAULTLIB:library before and all i did was make a list of libs that had conflicts in additional library directories with the /NODEFAULTLIB: preceding the list of conflicting libs... I was wondering if anyone could give me the list of libs that might be conflicting?


Also when I compile with the none debug libs such as sfml-Graphics.lib sfml-window.lib sfml-system.lib sfml-audio.lib When I run the .exe it throws errors and prompts for the debug... If i throw in the -d at the end of all the lib dependencies i.e sfml-Graphics-d.lib sfml-window-d.lib sfml-system-d.lib sfml-audio-d.lib then the .exe runs fine... but if i am going to release the code to my friends i don't want them to have to have the debug libs to run it any ideas?

54
General discussions / Getting on board with editing SFML to make it faster
« on: September 09, 2007, 03:20:52 am »
Hi I was wondering if I could help with the development of SFML? I am very interested in making it faster. I like that it is faster than SDL, which is the gaming lib that I was using until I found SFML. O by the way when using the dynamic DLLs for audio in VS it crashes after the program exits... I think you already talked about it in another form post but I'm not sure... just thought i would mention that...

let me know if I can help develop SFML I am a Junior in college taking a course now on Operating Systems and have had around 6-7 years programming experience.

thanks

Pages: 1 2 3 [4]
anything