소스 검색

Fixed missing cast.

woollybah 5 년 전
부모
커밋
ad6a8a5730
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      characterlcd.mod/characterlcd.bmx

+ 1 - 1
characterlcd.mod/characterlcd.bmx

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