Removed the useless "squares table" wich only worked for resolutions <= 1024 px.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@245 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2008-10-13 19:38:58 +00:00
parent c4be0a319a
commit 0bbed15383
4 changed files with 6 additions and 22 deletions

10
init.c
View File

@@ -2089,16 +2089,6 @@ void Initialiser_les_tables_de_multiplication(void)
}
}
void Initialiser_la_table_des_carres(void)
{
long Indice;
for (Indice=0;Indice<1025;Indice++)
Table_des_carres[Indice]=(Indice*Indice);
}
void Initialiser_la_table_precalculee_des_distances_de_couleur(void)
{
int Indice;