Search found 4 matches

by shadowFX
Fri Aug 13, 2004 10:10 pm
Forum: Beginners Help
Topic: Error when running my program
Replies: 2
Views: 300

thanks for the quick reply and help :)
by shadowFX
Fri Aug 13, 2004 9:32 pm
Forum: Beginners Help
Topic: Error when running my program
Replies: 2
Views: 300

Error when running my program

When i try running my program it has the error message, "This application has failed to start because Irrlicht.dll was not found." I have tried using different compiler settings but it still doesn't work.

Anyone know how to fix it?

Thank in advanced
by shadowFX
Fri Aug 13, 2004 9:20 pm
Forum: Beginners Help
Topic: Can't this code working :(
Replies: 3
Views: 468

i finally got it working :) I added the bracket in and changed the predifined headers in the project settings and i got a couple more errors. The error was i forgot to put a n in IGUIEnviroNment (when i was declaring a pointer), so now it compiles. Thank you for ur help :)
by shadowFX
Fri Aug 13, 2004 12:30 pm
Forum: Beginners Help
Topic: Can't this code working :(
Replies: 3
Views: 468

Can't this code working :(

I can't get this code to compile and i have tryed to fix it but i can't.

main.cpp:

#include <irrlicht.h>
using namespace irr;
#pragma comment(lib, "Irrlicht.lib")

int main()
{
//Creating the Irrlicht Engine Device
IrrlichtDevice *device =
createDevice(EDT_SOFTWARE, dimension2d<s32> (512, 384 ...