@JCL:
Thought for the support i need a support ticket from the shop?(cant find it).

Here is the code, short,simple laugh

Code:
#include<acknex.h>



int **array;


function main()
{
	int counter = 0;
array = (int**)sys_malloc(sizeof(int*)*10);	
for(counter=0;counter<=10;counter++)
{
	array[counter] = (int*)sys_malloc(sizeof(int)*10);
}
//array[1][1] = 5; Dimension of array error. This SHOULD work, but doesnt in Lite-c
(array[1])[1] = 5;	//Thats the only way it works with Lite-c
}



GReets
Rackscha

Last edited by Rackscha; 07/14/10 13:53.

MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development