<?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: SpaceFighter</title>
	<atom:link href="http://cymonsgames.com/spacefighter/feed/" rel="self" type="application/rss+xml" />
	<link>http://cymonsgames.com/spacefighter/</link>
	<description>Anyone can make cool games!</description>
	<lastBuildDate>Wed, 01 Feb 2012 02:10:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: oldlaptop</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2342</link>
		<dc:creator>oldlaptop</dc:creator>
		<pubDate>Sun, 11 Apr 2010 21:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2342</guid>
		<description>I finally got it working, thanks again Ratfink and Joe.</description>
		<content:encoded><![CDATA[<p>I finally got it working, thanks again Ratfink and Joe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ratfink</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2341</link>
		<dc:creator>Ratfink</dc:creator>
		<pubDate>Sun, 11 Apr 2010 17:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2341</guid>
		<description>I can see your problem quite clearly.  You&#039;re not linking in curses.  This should work:
$ gcc spacefighter.c -lncurses
Of course, that assumes you have ncurses installed in a place where your compiler can find it.  And if you don&#039;t want to be running a file called a.out, you can always do this:
$ gcc -o spacefighter spacefighter.c -lncurses
Those commands are untested, but unless I typed something wrong, they should work fine.</description>
		<content:encoded><![CDATA[<p>I can see your problem quite clearly.  You&#8217;re not linking in curses.  This should work:<br />
$ gcc spacefighter.c -lncurses<br />
Of course, that assumes you have ncurses installed in a place where your compiler can find it.  And if you don&#8217;t want to be running a file called a.out, you can always do this:<br />
$ gcc -o spacefighter spacefighter.c -lncurses<br />
Those commands are untested, but unless I typed something wrong, they should work fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oldlaptop</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2335</link>
		<dc:creator>oldlaptop</dc:creator>
		<pubDate>Sun, 11 Apr 2010 01:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2335</guid>
		<description># gcc spacefighter.c
/tmp/cczyzv7i.o: In function `adv&#039;:
spacefighter.c:(.text+0x205): undefined reference to `LINES&#039;
spacefighter.c:(.text+0x21a): undefined reference to `stdscr&#039;
spacefighter.c:(.text+0x225): undefined reference to `wmove&#039;
spacefighter.c:(.text+0x254): undefined reference to `stdscr&#039;
spacefighter.c:(.text+0x25e): undefined reference to `waddch&#039;
spacefighter.c:(.text+0x2f8): undefined reference to `LINES&#039;
...

And ALL of the rest is like that. I have curses installed, but not the devel version. D&#039;oh. Thanks for the help.</description>
		<content:encoded><![CDATA[<p># gcc spacefighter.c<br />
/tmp/cczyzv7i.o: In function `adv&#8217;:<br />
spacefighter.c:(.text+0&#215;205): undefined reference to `LINES&#8217;<br />
spacefighter.c:(.text+0x21a): undefined reference to `stdscr&#8217;<br />
spacefighter.c:(.text+0&#215;225): undefined reference to `wmove&#8217;<br />
spacefighter.c:(.text+0&#215;254): undefined reference to `stdscr&#8217;<br />
spacefighter.c:(.text+0x25e): undefined reference to `waddch&#8217;<br />
spacefighter.c:(.text+0x2f8): undefined reference to `LINES&#8217;<br />
&#8230;</p>
<p>And ALL of the rest is like that. I have curses installed, but not the devel version. D&#8217;oh. Thanks for the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2301</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 01 Apr 2010 14:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2301</guid>
		<description>It&#039;s more likely trouble wit the code. Still, tho a hundred errors? I&#039;m guessing it&#039;s less than that. And I&#039;m guessing that if you had copy and pasted the first couple we&#039;d see a bunch of &quot;undefined reference to...&quot;. Those would be linker errors meaning you don&#039;t have curses installed... tho on a Linux machine I&#039;m not sure how that would work. So do copy and paste the first few error and let&#039;s see what we got.</description>
		<content:encoded><![CDATA[<p>It&#8217;s more likely trouble wit the code. Still, tho a hundred errors? I&#8217;m guessing it&#8217;s less than that. And I&#8217;m guessing that if you had copy and pasted the first couple we&#8217;d see a bunch of &#8220;undefined reference to&#8230;&#8221;. Those would be linker errors meaning you don&#8217;t have curses installed&#8230; tho on a Linux machine I&#8217;m not sure how that would work. So do copy and paste the first few error and let&#8217;s see what we got.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oldlaptop</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2300</link>
		<dc:creator>oldlaptop</dc:creator>
		<pubDate>Thu, 01 Apr 2010 12:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2300</guid>
		<description>I tried to compile it on 32-bit Linux and the compiler spit out about a hundred errors, could it be trouble with gcc?</description>
		<content:encoded><![CDATA[<p>I tried to compile it on 32-bit Linux and the compiler spit out about a hundred errors, could it be trouble with gcc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: d9k</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2263</link>
		<dc:creator>d9k</dc:creator>
		<pubDate>Thu, 11 Mar 2010 14:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2263</guid>
		<description>Just amazing!</description>
		<content:encoded><![CDATA[<p>Just amazing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James E. Ward</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2094</link>
		<dc:creator>James E. Ward</dc:creator>
		<pubDate>Thu, 14 Jan 2010 18:48:28 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2094</guid>
		<description>You know I would just murder you if I didn&#039;t like you, Joe.</description>
		<content:encoded><![CDATA[<p>You know I would just murder you if I didn&#8217;t like you, Joe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2079</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 12 Jan 2010 16:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2079</guid>
		<description>I&#039;ve been wondering where you were. Can&#039;t bring you up on chat, don&#039;t see you around here. I just assumed you didn&#039;t like me any more.

Hah.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been wondering where you were. Can&#8217;t bring you up on chat, don&#8217;t see you around here. I just assumed you didn&#8217;t like me any more.</p>
<p>Hah.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James E. Ward</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2077</link>
		<dc:creator>James E. Ward</dc:creator>
		<pubDate>Tue, 12 Jan 2010 02:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2077</guid>
		<description>Holy crap!! In my break from the internet I was the featured Christmas game. YAAAY!!!</description>
		<content:encoded><![CDATA[<p>Holy crap!! In my break from the internet I was the featured Christmas game. YAAAY!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ratfink</title>
		<link>http://cymonsgames.com/spacefighter/comment-page-1/#comment-2033</link>
		<dc:creator>Ratfink</dc:creator>
		<pubDate>Sun, 27 Dec 2009 02:41:31 +0000</pubDate>
		<guid isPermaLink="false">http://cymonsgames.com/?p=2034#comment-2033</guid>
		<description>Fun game.  Very addicting.  The only bug I&#039;ve noticed is that sometimes the path disappears and you are forced to die.  Other than that, I really like this game, and can&#039;t wait to see what it&#039;ll be like when it&#039;s done.</description>
		<content:encoded><![CDATA[<p>Fun game.  Very addicting.  The only bug I&#8217;ve noticed is that sometimes the path disappears and you are forced to die.  Other than that, I really like this game, and can&#8217;t wait to see what it&#8217;ll be like when it&#8217;s done.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

