tests: add dummy Get_palette_RGB_scale()

returns 256 as it is the default value
This commit is contained in:
Thomas Bernard 2020-05-25 22:05:48 +02:00
parent 81595172a1
commit 8ee549d652

View File

@ -133,3 +133,8 @@ int Get_frame_duration(T_IO_Context *context)
(void)context;
return 0;
}
int Get_palette_RGB_scale(void)
{
return 256;
}