调整色偏校正

This commit is contained in:
13038267101 2023-06-15 08:59:31 +08:00
parent 1faab9ddf9
commit 694fc5855f
2 changed files with 3 additions and 3 deletions

View File

@ -2369,7 +2369,7 @@ int hg_scanner::setting_color_correction(void* data, long* len)
}
if (pid_ == 0x239 || pid_ == 0x439)
{
if (is_kernelsnap_239_3C_)
if (!is_kernelsnap_239_3C_)
{
*((bool*)data) = color_correction_ = false;
return SCANNER_ERR_DEVICE_NOT_SUPPORT;

View File

@ -503,9 +503,9 @@ void hg_scanner_239::init_version(void)
//is_kernelsnap_439_3C0606 = date >= "C0606" ? true : false;
is_kernelsnap_239_3C_ = date >= "C0606" ? true : false;
VLOG_MINI_2(LOG_LEVEL_DEBUG_INFO \
, "is_kernelsnap_439_3C0606:%d \
, "is_kernelsnap_239_3C_:%d \
, is_kernelsnap_439_220430_:%d\r\n" \
, is_kernelsnap_439_3C0606 \
, is_kernelsnap_239_3C_ \
, is_kernelsnap_439_220430_);
}