Set PSP_DEBUG to zero.
Save the settings, too, in gpb.c.
This commit is contained in:
@ -1,7 +1,8 @@
|
|||||||
1999-08-22 Tor Lillqvist <tml@iki.fi>
|
1999-08-22 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* plug-ins/common/psp.c: Use g_message, not gimp_message.
|
* plug-ins/common/psp.c: Use g_message, not gimp_message.
|
||||||
g_message calls gimp_message eventually.
|
g_message calls gimp_message eventually. Disable the debugging
|
||||||
|
messages.
|
||||||
|
|
||||||
* plug-ins/common/gpb.c: New plug-in for saving Adrian's gpb files
|
* plug-ins/common/gpb.c: New plug-in for saving Adrian's gpb files
|
||||||
(pixmap brushes) from an RGBA image. Probably just of temporary
|
(pixmap brushes) from an RGBA image. Probably just of temporary
|
||||||
|
@ -360,7 +360,10 @@ run (char *name,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (save_image (param[3].data.d_string, param[1].data.d_int32, param[2].data.d_int32))
|
if (save_image (param[3].data.d_string, param[1].data.d_int32, param[2].data.d_int32))
|
||||||
status = STATUS_SUCCESS;
|
{
|
||||||
|
gimp_set_data ("file_gpb_save", &info, sizeof (info));
|
||||||
|
status = STATUS_SUCCESS;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
status = STATUS_EXECUTION_ERROR;
|
status = STATUS_EXECUTION_ERROR;
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* set to the level of debugging output you want, 0 for none */
|
/* set to the level of debugging output you want, 0 for none */
|
||||||
#define PSP_DEBUG 3
|
#define PSP_DEBUG 0
|
||||||
|
|
||||||
/* the max number of layers that this plugin should try to load */
|
/* the max number of layers that this plugin should try to load */
|
||||||
#define MAX_LAYERS 64
|
#define MAX_LAYERS 64
|
||||||
|
Reference in New Issue
Block a user