From c76d76cb15bfa5ed0359766c838e0d0afeb10da3 Mon Sep 17 00:00:00 2001 From: Wengier Date: Thu, 22 Jul 2021 13:04:18 -0400 Subject: [PATCH] fix --- src/ints/int_dosv.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ints/int_dosv.cpp b/src/ints/int_dosv.cpp index 1e6bfde04..a6fb26bb7 100644 --- a/src/ints/int_dosv.cpp +++ b/src/ints/int_dosv.cpp @@ -296,7 +296,7 @@ static bool CheckEmptyData(uint8_t *data, Bitu length) } #if defined(LINUX) && C_X11 -static Bit8u linux_symbol_16[] = { +static uint8_t linux_symbol_16[] = { // 0x815f 0x80, 0x00, 0x40, 0x00, 0x20, 0x00, 0x10, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x40, 0x00, 0x20, 0x00, 0x10, 0x00, 0x08, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, @@ -311,7 +311,7 @@ static Bit8u linux_symbol_16[] = { 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; -static Bit8u linux_symbol_24[] = { +static uint8_t linux_symbol_24[] = { // 0x815f 0x80, 0x00, 0x00, 0x40, 0x00, 0x00, 0x20, 0x00, 0x00, 0x10, 0x00, 0x00, 0x08, 0x00, 0x00, 0x04, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x00, 0x00, 0x20, 0x00, 0x00, 0x10, 0x00, 0x00, 0x08, 0x00, 0x00, 0x04, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, @@ -330,9 +330,9 @@ static Bit8u linux_symbol_24[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; -bool CheckLinuxSymbol(Bitu code, Bit8u *buff, int width, int height) +bool CheckLinuxSymbol(Bitu code, uint8_t *buff, int width, int height) { - Bit8u *src; + uint8_t *src; int len, offset; if(width == 16 && height == 16) { src = linux_symbol_16;