Grabonito
Member
|
Bug ?
I have updated the engine and the problem
Why do I have such an error ?
First-chance exception at 0x75f6b727 in Onin.exe: Microsoft C++ exception: cudaError_enum at memory location 0x0a8ff7cc..
Graphics Card: GTX 670
(This post was last modified: 12-10-2012 12:45 PM by Grabonito.)
|
|
12-10-2012 11:37 AM |
|
Grabonito
Member
|
RE: Bug ?
Someone realizes what the problem is, I'm stuck and I can not do..
|
|
12-10-2012 04:07 PM |
|
Ogniok
Member
|
RE: Bug ?
This error mean that somewhere in the code you're accesing element that not exist.
For expamle:
Code:
Memb<Int> sth;
REP(3) sth.New(0);
Int x = sth[3]; //That line gives an error because sth has only 3 elements
|
|
12-10-2012 04:12 PM |
|
Grabonito
Member
|
RE: Bug ?
Before the update I had no error.
Now I have to check the code
Tutorials build correctly
|
|
12-10-2012 05:00 PM |
|
Esenthel
Administrator
|
RE: Bug ?
You should use debugging, and see at which line of code the error occurs, check the call stack
|
|
12-11-2012 01:43 PM |
|