Cleanup unused variable

This commit is contained in:
twinaphex 2018-02-11 16:42:53 +01:00
parent ce2fb1770b
commit 2d8623fa10
1 changed files with 3 additions and 4 deletions

View File

@ -584,8 +584,7 @@ static INLINE unsigned font_get_replacement(const char* src, const char* start)
{ {
if ((*src & 0xFC) == 0xD8) /* 0x0600 to 0x06FF */ if ((*src & 0xFC) == 0xD8) /* 0x0600 to 0x06FF */
{ {
int lookup; unsigned result = 0;
unsigned result;
bool prev_connected = false; bool prev_connected = false;
bool next_connected = false; bool next_connected = false;
unsigned char id = (src[0] << 6) | (src[1] & 0x3F); unsigned char id = (src[0] << 6) | (src[1] & 0x3F);