Guild icon
Teeworlds
discord.gg/teeworlds / development
For discussions around the development of the official Teeworlds
Between 2021-12-27 00:00:00Z and 2021-12-28 00:00:00Z
Avatar
I have problem with start TeeWorlds on the Rapberry PI 3 (Raspbian Buster): [61c9bb51][datafile]: loading data index=7 size=74 uncompressed=152 [61c9bb51][render]: invalid texture 368 3 0 [61c9bb51][render]: invalid texture 368 3 0 [61c9bb51][render]: invalid texture 369 3 0 [61c9bb51][render]: invalid texture 369 3 0 [61c9bb51][render]: invalid texture 369 3 0 [61c9bb51][render]: invalid texture 369 3 0 [61c9bb51][render]: invalid texture 369 3 0 [61c9bb51][render]: ...
Avatar
The last iteration in CVariableInt::Unpack is changed from cpp *pInOut |= (*pSrc&(0x7F))<<(6+7+7+7); to cpp *pInOut |= (*pSrc & 0x0F) << (6 + 7 + 7 + 7); which means the last iteration will unpack at most 4 more bits instead of 7, hence invalid left shifts by 27 places that could otherwise occur on this line are prevented (see https://github.com/ddnet/ddnet/issues/4280 and https://github.com/ddnet/ddnet/issues/3686). Now at most 31 bits are unpacked, in addition to...
Exported 2 message(s)