浏览代码

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>