1.1.10 stuff

-Yosh
This commit is contained in:
Manish Singh
1999-10-06 23:48:01 +00:00
parent c8578fc4b4
commit 8873e7553a
28 changed files with 51142 additions and 16595 deletions

View File

@ -108,7 +108,7 @@ gamma_new (int type)
GammaContext *context = NULL;
context = g_new (GammaContext, 1);
context->gamma = 2.2;
context->gamma = 1.0;
context->lookup = g_new (guchar, 256);
context->shell = NULL;
context->spinner = NULL;
@ -116,8 +116,6 @@ gamma_new (int type)
for (i = 0; i < 256; i++)
context->lookup[i] = i;
gamma_create_lookup_table (context);
return context;
}