Selaa lähdekoodia

Fixed missing cast.

woollybah 5 vuotta sitten
vanhempi
commit
f9b59bbc5f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      characterlcd.mod/characterlcd.bmx

+ 1 - 1
characterlcd.mod/characterlcd.bmx

@@ -648,7 +648,7 @@ Type THd44780 Implements IDisposable
 		
 		
 		' The character address is set in bits 3-5 of the command byte
 		' The character address is set in bits 3-5 of the command byte
 		SendCommand(Byte(SET_CG_RAM_ADDRESS_COMMAND | (location Shl 3)))
 		SendCommand(Byte(SET_CG_RAM_ADDRESS_COMMAND | (location Shl 3)))
-		SendData(characterMap, characterMap.Length)
+		SendData(characterMap, Size_T(characterMap.Length))
 	End Method
 	End Method