Browse Source

Fix binary->hex conversion mistake reported by FocusedWolf.

git-svn-id: file:///var/svn/tigccpp/trunk@1080 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 17 years ago
parent
commit
d6d5b45fc7
1 changed files with 2 additions and 2 deletions
  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>