mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
nits
This commit is contained in:
parent
ae2f6f06a0
commit
2e6f71ee6b
8
patch.c
8
patch.c
@ -66,12 +66,12 @@ static uint64_t bps_decode(struct bps_data *bps)
|
||||
|
||||
for (;;)
|
||||
{
|
||||
uint8_t x = bps_read(bps);
|
||||
data += (x & 0x7f) * shift;
|
||||
uint8_t x = bps_read(bps);
|
||||
data += (x & 0x7f) * shift;
|
||||
if (x & 0x80)
|
||||
break;
|
||||
shift <<= 7;
|
||||
data += shift;
|
||||
shift <<= 7;
|
||||
data += shift;
|
||||
}
|
||||
|
||||
return data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user