Search found 15 matches

by VagueNess
Wed Apr 30, 2008 3:44 pm
Forum: Project Announcements
Topic: Bullet physics demo
Replies: 69
Views: 51244

When I close the program, VC++2005 starts complaining about an unhandled Win32 exeption... Any help?
by VagueNess
Tue Mar 25, 2008 8:17 pm
Forum: Beginners Help
Topic: Problem with Bullet animator 0.2
Replies: 5
Views: 472

@hybrid: Actually, none of the problems is solved yet. :(
by VagueNess
Sat Mar 22, 2008 12:29 pm
Forum: Beginners Help
Topic: Problem with Bullet animator 0.2
Replies: 5
Views: 472

I get the same error if i change it to:

Code: Select all

bool CWorldEditorGUI::OnEvent(const SEvent& event)
by VagueNess
Sat Mar 22, 2008 10:07 am
Forum: Beginners Help
Topic: Problem with Bullet animator 0.2
Replies: 5
Views: 472

Problem with Bullet animator 0.2

Hi,

I've downloaded the serializable Bullet animator.
When I tried compiling it (with MSVC++ 2008), I get these errors:


c:\documents and settings\******\mijn documenten\visual studio 2008\projects\game\game\gminigolfapp.cpp(84) : error C2259: 'CWorldEditorGUI' : cannot instantiate abstract ...
by VagueNess
Thu Mar 13, 2008 4:34 pm
Forum: Code Snippets
Topic: Bullet physics animator
Replies: 27
Views: 26189

I get this errors:

cworldeditorgui.cpp(268) : error C2440: 'initializing' : cannot convert from 'irr::core::list<T>::ConstIterator' to 'irr::core::list<T>::Iterator'
with
[
T=irr::scene::ISceneNode *
]
No constructor could take the source type, or constructor overload resolution was ambiguous ...
by VagueNess
Sat Feb 02, 2008 2:42 pm
Forum: Beginners Help
Topic: Problem with ODE/Irrlicht tutorial
Replies: 16
Views: 4595

Virion wrote:
#pragma comment(lib, "ode.lib")
Not this.
What do you mean? (Sorry if it's a dumb question, I'm a noob)
by VagueNess
Sat Feb 02, 2008 11:18 am
Forum: Beginners Help
Topic: Problem with ODE/Irrlicht tutorial
Replies: 16
Views: 4595

I already did.
by VagueNess
Sat Feb 02, 2008 10:51 am
Forum: Beginners Help
Topic: Problem with ODE/Irrlicht tutorial
Replies: 16
Views: 4595

I still have those two linker errors :(
by VagueNess
Wed Jan 30, 2008 5:50 pm
Forum: Beginners Help
Topic: Problem with ODE/Irrlicht tutorial
Replies: 16
Views: 4595

I started with MT.
I tried all the others, and they didn't work.
No I switched it back, and I get another error along with the other two:

Code: Select all

LIBCMT.lib(wincrt0.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup
:s...
by VagueNess
Wed Jan 30, 2008 4:30 pm
Forum: Beginners Help
Topic: Problem with ODE/Irrlicht tutorial
Replies: 16
Views: 4595

I already did that

Code: Select all

#pragma comment(lib, "ode.lib")
Thanks anyway
by VagueNess
Wed Jan 30, 2008 4:20 pm
Forum: Beginners Help
Topic: Problem with ODE/Irrlicht tutorial
Replies: 16
Views: 4595

Problem with ODE/Irrlicht tutorial

Hello everyone,

I have a problem compiling this tutorial.


(45-47) : warning C4305: '=' : truncation from 'double' to 'dReal'
(106) : warning C4305: 'argument' : truncation from 'double' to 'dReal'
(131) : warning C4305: 'argument' : truncation from 'double' to 'irr::f32'
(158) : warning C4305 ...
by VagueNess
Wed Jan 02, 2008 11:29 pm
Forum: Beginners Help
Topic: Win32 Example Error Irrlicht 1.4
Replies: 7
Views: 609

Thanks everyone, I figured it out :)
by VagueNess
Wed Jan 02, 2008 9:58 pm
Forum: Beginners Help
Topic: Win32 Example Error Irrlicht 1.4
Replies: 7
Views: 609

oldskoolPunk wrote:Thats weird then. Just change the <void*> in FuzzYspo0N's answer to <irr::s32*>
I was doing that... im not that stupid xD
by VagueNess
Wed Jan 02, 2008 9:44 pm
Forum: Beginners Help
Topic: Win32 Example Error Irrlicht 1.4
Replies: 7
Views: 609

I think that tutorial needs to be updated.
Since 1.3.1, a simple

param.WindowId = hwnd;

has worked for me.
I did that but is says
invalid conversion from 'HWND__*' to "irr::s32"
I already tried to change it to irr::s32, I guess it's still needed...

@FuzzySpoon: I've figured out that it had ...
by VagueNess
Wed Jan 02, 2008 8:31 pm
Forum: Beginners Help
Topic: Win32 Example Error Irrlicht 1.4
Replies: 7
Views: 609

Win32 Example Error Irrlicht 1.4

Hi

I have a problem when compiling the code of the "Win32 window" tutorial. The errors are:

"expected '>' before '(' token"
"expected identifier before '(' token"
"expected '<' before '(' token"

at line 196, which is:

param.WindowId = reinterpret_cast(hIrrlichtWindow);

I'm a total noob in ...