About Store Forum Documentation Contact



Post Reply 
Ineisis won't compile, error with Listener in camera
Author Message
Jaehiko Offline
Member

Post: #1
Ineisis won't compile, error with Listener in camera
Hi All,

I bought the Ineisis source code about a week ago as a starting point and a learning tool. All was well until tonight. I am hitting a compile error for the Ineisis Client in camera.cpp and it has something to do with Listener.

The error is on line 17 in camera.cpp: error C2064: term does not valuable to a function taking 0 arguments

Here is the offending section...

case VIEW_FPP:
{
Listener.pos(Cam.matrix.pos, Cam.vel() )
.orn(Cam.matrix.z , Cam.matrix.y);
}break;

I am assuming something changed in the way Listener is being handled and I think I remember Esenthel asking to be updated last night and I did so then shut down. Coming back to it tonight I received the above mentioned error.

I can comment out the section and it compiles, of course, but I don't want to break functionality. More importantly, simply bypassing an error won't allow me to learn what happened and how to fix it when something similar pops up in the future.

Thanks for your time, I am very impressed with the community and once I get a better handle on things I hope to be able to be of help and answer someone's question at some point!

Jae
08-28-2014 05:24 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Ineisis won't compile, error with Listener in camera
Hi,

Thanks for reporting this, I've updated the source.
A quick fix is to replace "Cam.vel()" -> "Cam.vel"
08-28-2014 05:51 AM
Find all posts by this user Quote this message in a reply
Jaehiko Offline
Member

Post: #3
RE: Ineisis won't compile, error with Listener in camera
Thank you! That makes perfect sense.
08-28-2014 03:39 PM
Find all posts by this user Quote this message in a reply
Post Reply