1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-19 10:22:39 +01:00

Codechange: rename byte to uint8_t (#12308)

This commit is contained in:
Patric Stout
2024-03-16 23:59:32 +01:00
committed by GitHub
parent bd7120bae4
commit a3cfd23cf9
355 changed files with 1654 additions and 1656 deletions

View File

@@ -98,7 +98,7 @@ void RandomAccessFile::SeekTo(size_t pos, int mode)
* Read a byte from the file.
* @return Read byte.
*/
byte RandomAccessFile::ReadByte()
uint8_t RandomAccessFile::ReadByte()
{
if (this->buffer == this->buffer_end) {
this->buffer = this->buffer_start;
@@ -117,7 +117,7 @@ byte RandomAccessFile::ReadByte()
*/
uint16_t RandomAccessFile::ReadWord()
{
byte b = this->ReadByte();
uint8_t b = this->ReadByte();
return (this->ReadByte() << 8) | b;
}