소스 검색

Fix binary->hex conversion mistake reported by FocusedWolf.

git-svn-id: file:///var/svn/tigccpp/trunk@1080 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 17 년 전
부모
커밋
d6d5b45fc7
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tigcc/doc/System/Info/faq/15.hss

+ 2 - 2
tigcc/doc/System/Info/faq/15.hss

@@ -22,11 +22,11 @@ Then, produce rows as a set of binary numbers, and convert them
 to hex. For example:
 <BR><BR>
 00111000 binary = 38 hex<BR>
-01111100 binary = 7B hex
+01111100 binary = 7C hex
 <BR><BR>
 etc. These hex numbers describe the sprite, i.e. the sprite
 definition should be
-<PRE>unsigned char sprite [] = {0x38, 0x7B, ...};
+<PRE>unsigned char sprite [] = {0x38, 0x7C, ...};
 </PRE>
 assuming that <A HREF="$$LINK(sprites.h/Sprite8)">Sprite8</A> will be used. That's all...
 <BR><BR>