Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 527 → Rev 528

/trunk/CHANGELOG.md
1,5 → 1,8
# Changelog
 
## 1.7.0.19 [Work-In-Progress]
- Fixed bug in Watcom (32 bit) build that prevented creation of protected filters.
 
## 1.7.0.18 [15-May-2022]
- 32bit/Windows filter: Fixed issue with resource strings (English and German language was broken) introduced in version 1.7.0.17.
 
/trunk/obfusc.c
38,7 → 38,8
// This char array will result in contiguous chars in OpenWatcom.
// In MSVC++, the array will be built using several "mov ..." OP codes.
volatile char seed[8] = { '\x17', '\x05', '\x83', '\x52', '\x2a', '\x97', '\x16', '\x74' };
return (uint64_t)seed;
return *((uint64_t*)&seed[0]);
 
}
#elif defined(_MSC_VER)
#ifdef _WIN64