<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Tutorial 11: Structures</title>
	<atom:link href="http://www.codemii.com/2009/03/15/tutorial-11-structures/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/</link>
	<description>Home of the Homebrew Browser and Wii tutorials</description>
	<lastBuildDate>Sat, 31 Jul 2010 04:12:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mrjon</title>
		<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/#comment-2746</link>
		<dc:creator>mrjon</dc:creator>
		<pubDate>Wed, 15 Apr 2009 00:28:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemii.com/?p=422#comment-2746</guid>
		<description>can you make a tutorial for configure devkitpro and eclipse? with the autocomplete tool? for wii development...thanks! great work!</description>
		<content:encoded><![CDATA[<p>can you make a tutorial for configure devkitpro and eclipse? with the autocomplete tool? for wii development&#8230;thanks! great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teknecal</title>
		<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/#comment-1868</link>
		<dc:creator>teknecal</dc:creator>
		<pubDate>Thu, 19 Mar 2009 08:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemii.com/?p=422#comment-1868</guid>
		<description>You know what I mean :P. Thanks.</description>
		<content:encoded><![CDATA[<p>You know what I mean <img src='http://www.codemii.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulus</title>
		<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/#comment-1862</link>
		<dc:creator>paulus</dc:creator>
		<pubDate>Wed, 18 Mar 2009 22:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemii.com/?p=422#comment-1862</guid>
		<description>In C an expression of the form
object[0].x = 42;
is called an assignment, not a call...</description>
		<content:encoded><![CDATA[<p>In C an expression of the form<br />
object[0].x = 42;<br />
is called an assignment, not a call&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pvt Ryan</title>
		<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/#comment-1818</link>
		<dc:creator>Pvt Ryan</dc:creator>
		<pubDate>Mon, 16 Mar 2009 10:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemii.com/?p=422#comment-1818</guid>
		<description>Just noticed I have typo&#039;d the 1st word in the pdf.. DOH!!!</description>
		<content:encoded><![CDATA[<p>Just noticed I have typo&#8217;d the 1st word in the pdf.. DOH!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teknecal</title>
		<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/#comment-1815</link>
		<dc:creator>teknecal</dc:creator>
		<pubDate>Mon, 16 Mar 2009 08:55:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemii.com/?p=422#comment-1815</guid>
		<description>Thanks for those corrections, I didn&#039;t actually test or compile this ;)</description>
		<content:encoded><![CDATA[<p>Thanks for those corrections, I didn&#8217;t actually test or compile this <img src='http://www.codemii.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pvt Ryan</title>
		<link>http://www.codemii.com/2009/03/15/tutorial-11-structures/#comment-1813</link>
		<dc:creator>Pvt Ryan</dc:creator>
		<pubDate>Mon, 16 Mar 2009 07:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.codemii.com/?p=422#comment-1813</guid>
		<description>Mate you have loads of mistakes here..

1) code segement 2: Should be:
struct object_struct objects[10];

2) code segement 3:
You should declare i at the top instead of x
The 1st for loop should use &quot;i&quot; as the counter as you use it later and haven&#039;t declared it.

3) code segement 3: Inside 1st for loop should be
object[i].x = rand() % 640 + 1;
object[i].y = rand() % 480 + 1;
object[i].on_screen = true;

4) code segment 3: Your outside screen logic is wrong, it should be:
object[i].y &gt; 480 &#124;&#124; object[i].y &lt; 0 &#124;&#124; object[i].x &gt; 640 &#124;&#124; object[i].x &lt; 0

I have made the corrections to the PDF versions and will email them to you now.</description>
		<content:encoded><![CDATA[<p>Mate you have loads of mistakes here..</p>
<p>1) code segement 2: Should be:<br />
struct object_struct objects[10];</p>
<p>2) code segement 3:<br />
You should declare i at the top instead of x<br />
The 1st for loop should use &#8220;i&#8221; as the counter as you use it later and haven&#8217;t declared it.</p>
<p>3) code segement 3: Inside 1st for loop should be<br />
object[i].x = rand() % 640 + 1;<br />
object[i].y = rand() % 480 + 1;<br />
object[i].on_screen = true;</p>
<p>4) code segment 3: Your outside screen logic is wrong, it should be:<br />
object[i].y &gt; 480 || object[i].y &lt; 0 || object[i].x &gt; 640 || object[i].x &lt; 0</p>
<p>I have made the corrections to the PDF versions and will email them to you now.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
