<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>OS X 10.5 problem</title>
		<link>http://www.allegro.cc/forums/view/595628</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Wed, 26 Mar 2008 05:24:44 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I just installed the newest version of Allegro, but when I try to use bitmaps all I can use are examples, not my own. I fI use my own, I get a white square instead of a window, then it crashes.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 00:22:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>When you say newest version do you mean the newest stable version , the newest release of the WIP version , or SVN version, so on...?</p><p>Post the version number of Allegro you downloaded. As for the code not working post what you&#39;re using that isn&#39;t working.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Fri, 21 Mar 2008 05:30:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I&#39;m using Allegro v4.2.2 The code that doesn&#39;t work is as follows:</p><p>#include &lt;Allegro/allegro.h&gt;</p><p>int main(int argc, const char *argv[])<br />{<br />	allegro_init();<br />	install_keyboard();<br />	set_color_depth(16);<br />	set_gfx_mode(GFX_AUTODETECT,640,480,0,0);<br />	BITMAP *map = NULL;<br />	map = load_bitmap(&quot;picture.bmp&quot;, NULL);<br />	BITMAP *buffer = NULL;<br />	buffer = create_bitmap(610,400);<br />	draw_sprite(buffer, map, 0, 0);<br />	blit(buffer, screen, 0,0,0,0,610,400);<br />        readkey();<br />	clear_bitmap(buffer);<br />	destroy_bitmap(map);<br />	destroy_bitmap(buffer);<br />		<br />				<br />	return 0;<br />}<br />END_OF_MAIN();</p><p>610 x 400 is the image size of picture.bmp
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 07:43:04 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You can use code tags in the forum to display your code in a formatted window. It makes it easier to read. You can also edit your post.<br /> </p><pre>&lt;code&gt;
Code goes here
&lt;/code&gt;</pre><p>

If the code you posted is crashing, it&#39;s likely because you used a relative path name to load your &quot;picture.bmp&quot; file. The load_bitmap and create_bitmap functions will return NULL if they fail to load/create their bitmaps respectively and you should check for it.</p><p>The directory that will be searched for the file is likely the directory the program was run from and if it is not there load_bitmap will fail. Try using the absolute path of the file and see if that will work. However , this will reduce portability if you use an absolute path. It&#39;s best to build up an absolute path to the file during runtime so the absolute path will be correct on every machine it&#39;s run on.</p><div class="source-code snippet"><div class="inner"><pre><a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a><span class="k3">*</span> pic <span class="k3">=</span> <a href="http://www.allegro.cc/manual/load_bitmap" target="_blank"><span class="a">load_bitmap</span></a><span class="k2">(</span><span class="s">"picture.bmp"</span> , NULL<span class="k2">)</span><span class="k2">;</span>
<span class="k1">if</span> <span class="k2">(</span><span class="k3">!</span>pic<span class="k2">)</span> <span class="k2">{</span><span class="k1">return</span> <span class="n">0</span><span class="k2">;</span><span class="k2">}</span><span class="c">// loading failed , quit / deallocate memory</span>
</pre></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Fri, 21 Mar 2008 09:18:03 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I tried the direct path, but it still failed. I tried using Terminal to compile it, and when I ran it using ./a.out, after it crashes, it said:</p><p>Warning once: This application, or a library it uses, is using NSQuickDrawView, which has been deprecated. Apps should cease use of QuickDraw and move to Quartz.<br />a.out(5928,0xf0081000) malloc: *** mmap(size=4294238208) failed (error code=12)<br />*** error: can&#39;t allocate region<br />*** set a breakpoint in malloc_error_break to debug<br />Bus error
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 10:19:21 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Don&#39;t use a semi-colon after END_OF_MAIN() , it&#39;s incorrect.</p><p>Try compiling this and running it. If the graphics mode is set correctly the screen will appear red at the beginning of the program. Press a key and if the screen turns yellow the buffer was allocated correctly. Press another key and if the picture bitmap was loaded okay the screen will turn green. Press another key to attempt to display your picture. Be sure to replace picture.bmp with the absolute path of the file on your computer. Perhaps filename directory slashes are not being written correctly? 
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="p">#include &lt;Allegro/allegro.h&gt;</span></td></tr><tr><td class="number">2</td><td>&#160;</td></tr><tr><td class="number">3</td><td>&#160;</td></tr><tr><td class="number">4</td><td><span class="k1">int</span> main<span class="k2">(</span><span class="k1">int</span> argc, <span class="k1">const</span> <span class="k1">char</span> <span class="k3">*</span>argv<span class="k2">[</span><span class="k2">]</span><span class="k2">)</span> <span class="k2">{</span></td></tr><tr><td class="number">5</td><td>  <a href="http://www.allegro.cc/manual/allegro_init" target="_blank"><span class="a">allegro_init</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">6</td><td>  <a href="http://www.allegro.cc/manual/install_keyboard" target="_blank"><span class="a">install_keyboard</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">7</td><td>  <a href="http://www.allegro.cc/manual/install_timer" target="_blank"><span class="a">install_timer</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">8</td><td>&#160;</td></tr><tr><td class="number">9</td><td>  <a href="http://www.allegro.cc/manual/set_color_depth" target="_blank"><span class="a">set_color_depth</span></a><span class="k2">(</span><span class="n">16</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">10</td><td>  <a href="http://www.allegro.cc/manual/set_gfx_mode" target="_blank"><span class="a">set_gfx_mode</span></a><span class="k2">(</span>GFX_AUTODETECT,<span class="n">640</span>,<span class="n">480</span>,<span class="n">0</span>,<span class="n">0</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">11</td><td>  <a href="http://www.allegro.cc/manual/clear_to_color" target="_blank"><span class="a">clear_to_color</span></a><span class="k2">(</span><a href="http://www.allegro.cc/manual/screen" target="_blank"><span class="a">screen</span></a> , <a href="http://www.allegro.cc/manual/makecol" target="_blank"><span class="a">makecol</span></a><span class="k2">(</span><span class="n">255</span>,<span class="n">0</span>,<span class="n">0</span><span class="k2">)</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">12</td><td>  <a href="http://www.allegro.cc/manual/clear_keybuf" target="_blank"><span class="a">clear_keybuf</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">13</td><td>  <a href="http://www.allegro.cc/manual/readkey" target="_blank"><span class="a">readkey</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">14</td><td>  <a href="http://www.allegro.cc/manual/rest" target="_blank"><span class="a">rest</span></a><span class="k2">(</span><span class="n">200</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">15</td><td>&#160;</td></tr><tr><td class="number">16</td><td>  <a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a> <span class="k3">*</span>buffer <span class="k3">=</span> NULL<span class="k2">;</span></td></tr><tr><td class="number">17</td><td>  buffer <span class="k3">=</span> <a href="http://www.allegro.cc/manual/create_bitmap" target="_blank"><span class="a">create_bitmap</span></a><span class="k2">(</span><span class="n">610</span>,<span class="n">400</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">18</td><td>  <span class="k1">if</span> <span class="k2">(</span>buffer<span class="k2">)</span> <span class="k2">{</span><a href="http://www.allegro.cc/manual/clear_to_color" target="_blank"><span class="a">clear_to_color</span></a><span class="k2">(</span><a href="http://www.allegro.cc/manual/screen" target="_blank"><span class="a">screen</span></a> , <a href="http://www.allegro.cc/manual/makecol" target="_blank"><span class="a">makecol</span></a><span class="k2">(</span><span class="n">255</span>,<span class="n">255</span>,<span class="n">0</span><span class="k2">)</span><span class="k2">)</span><span class="k2">;</span><span class="k2">}</span></td></tr><tr><td class="number">19</td><td>  <a href="http://www.allegro.cc/manual/clear_keybuf" target="_blank"><span class="a">clear_keybuf</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">20</td><td>  <a href="http://www.allegro.cc/manual/readkey" target="_blank"><span class="a">readkey</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">21</td><td>  <a href="http://www.allegro.cc/manual/rest" target="_blank"><span class="a">rest</span></a><span class="k2">(</span><span class="n">200</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">22</td><td>&#160;</td></tr><tr><td class="number">23</td><td>  <a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a> <span class="k3">*</span>map <span class="k3">=</span> NULL<span class="k2">;</span></td></tr><tr><td class="number">24</td><td>  map <span class="k3">=</span> <a href="http://www.allegro.cc/manual/load_bitmap" target="_blank"><span class="a">load_bitmap</span></a><span class="k2">(</span><span class="s">"picture.bmp"</span>, NULL<span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">25</td><td>  <span class="k1">if</span> <span class="k2">(</span>map<span class="k2">)</span> <span class="k2">{</span><a href="http://www.allegro.cc/manual/clear_to_color" target="_blank"><span class="a">clear_to_color</span></a><span class="k2">(</span><a href="http://www.allegro.cc/manual/screen" target="_blank"><span class="a">screen</span></a> , <a href="http://www.allegro.cc/manual/makecol" target="_blank"><span class="a">makecol</span></a><span class="k2">(</span><span class="n">0</span>,<span class="n">255</span>,<span class="n">0</span><span class="k2">)</span><span class="k2">)</span><span class="k2">;</span><span class="k2">}</span></td></tr><tr><td class="number">26</td><td>  <a href="http://www.allegro.cc/manual/clear_keybuf" target="_blank"><span class="a">clear_keybuf</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">27</td><td>  <a href="http://www.allegro.cc/manual/readkey" target="_blank"><span class="a">readkey</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">28</td><td>  <a href="http://www.allegro.cc/manual/rest" target="_blank"><span class="a">rest</span></a><span class="k2">(</span><span class="n">200</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">29</td><td>&#160;</td></tr><tr><td class="number">30</td><td>  <a href="http://www.allegro.cc/manual/draw_sprite" target="_blank"><span class="a">draw_sprite</span></a><span class="k2">(</span>buffer, map, <span class="n">0</span>, <span class="n">0</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">31</td><td>  <a href="http://www.allegro.cc/manual/blit" target="_blank"><span class="a">blit</span></a><span class="k2">(</span>buffer, <a href="http://www.allegro.cc/manual/screen" target="_blank"><span class="a">screen</span></a>, <span class="n">0</span>,<span class="n">0</span>,<span class="n">0</span>,<span class="n">0</span>,<span class="n">610</span>,<span class="n">400</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">32</td><td>  <a href="http://www.allegro.cc/manual/clear_keybuf" target="_blank"><span class="a">clear_keybuf</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">33</td><td>  <a href="http://www.allegro.cc/manual/readkey" target="_blank"><span class="a">readkey</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">34</td><td>&#160;</td></tr><tr><td class="number">35</td><td>  <a href="http://www.allegro.cc/manual/clear_bitmap" target="_blank"><span class="a">clear_bitmap</span></a><span class="k2">(</span>buffer<span class="k2">)</span><span class="k2">;</span><span class="c">// unnecessary since you're just about to destroy it anyway</span></td></tr><tr><td class="number">36</td><td>  <a href="http://www.allegro.cc/manual/destroy_bitmap" target="_blank"><span class="a">destroy_bitmap</span></a><span class="k2">(</span>map<span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">37</td><td>  <a href="http://www.allegro.cc/manual/destroy_bitmap" target="_blank"><span class="a">destroy_bitmap</span></a><span class="k2">(</span>buffer<span class="k2">)</span><span class="k2">;</span></td></tr><tr><td class="number">38</td><td>&#160;</td></tr><tr><td class="number">39</td><td>  <span class="k1">return</span> <span class="n">0</span><span class="k2">;</span></td></tr><tr><td class="number">40</td><td><span class="k2">}</span></td></tr><tr><td class="number">41</td><td><a href="http://www.allegro.cc/manual/END_OF_MAIN" target="_blank"><span class="a">END_OF_MAIN</span></a><span class="k2">(</span><span class="k2">)</span></td></tr></tbody></table></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Fri, 21 Mar 2008 10:43:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Got to yellow, then when I pressed a key, it crashed, without turning green. As for the slashes, I used &quot;/&quot;. Could the problem have anything to do with the depth?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 11:10:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Since the screen didn&#39;t turn green , then load_bitmap was returning NULL which means it failed.</p><p>If you set a color depth and call set_gfx_mode then until you do it again any bitmaps you load with load_bitmap will be converted to the current color depth. I think the problem is just with the file path. Try something like this :
</p><div class="source-code snippet"><div class="inner"><pre><span class="k1">char</span> filepath_pic<span class="k2">[</span><span class="k2">]</span> <span class="k3">=</span> <span class="s">"absolute/path.bmp"</span><span class="k2">;</span>
<a href="http://www.allegro.cc/manual/fix_filename_slashes" target="_blank"><span class="a">fix_filename_slashes</span></a><span class="k2">(</span>filepath_pic<span class="k2">)</span><span class="k2">;</span>
<a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a><span class="k3">*</span> map <span class="k3">=</span> <a href="http://www.allegro.cc/manual/load_bitmap" target="_blank"><span class="a">load_bitmap</span></a><span class="k2">(</span>filepath_pic , NULL<span class="k2">)</span><span class="k2">;</span>
</pre></div></div><p>
I&#39;m not sure what MacOS X likes for slashes so maybe that will fix it.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Fri, 21 Mar 2008 11:21:24 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It flashes red, then stays white, and then when I press a key, yellow. It doesn&#39;t crash, but stays yellow.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 11:43:20 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Well , that&#39;s really bizarre with the screen going white and all. Especially since there&#39;s no code in there to do that.</p><p>Since I don&#39;t see any MacOS X builds on the allegro files page I assume you compiled Allegro yourself. Did you follow everything in the allegro\docs\build\macosx.txt file?</p><p>What options did you pass to the compiler when you compiled your program and linked it?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Fri, 21 Mar 2008 12:00:04 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I compiled the projects in Xcode, so I didn&#39;t have to pass any options. When I did compile the file in Terminal, I just typed &quot;g++ -framework Allegro&quot; and then the location. I did compile Allegro myself at first, but then I found an automatic installer and used that (it was v4.2.2). Neither installations worked on my own image. I don&#39;t known if this could be of the same cause, but when I just tried to use g++ to compile a C++ file, I got an error saying &quot;expected unqualified-id before ‘using’&quot; Maybe my gcc&#39;s broken.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 12:15:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>According to allegro/docs/build/macosx.txt in the &quot;Using allegro from the command line&quot; section it says to 
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
You can also link against the Allegro framework, providing you previously<br />   installed it via make install-framework:</p><p>      gcc myfile.c -o myprogram `allegro-config --frameworks`
</p></div></div><p>
Using backticks around &quot;allegro-config -- frameworks&quot;.</p><p>You can also find a list of linking options by using 
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Run allegro-config without any arguments for a full list of options.
</p></div></div><p>
Take another look over macosx.txt and see if there&#39;s something you missed.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Fri, 21 Mar 2008 12:25:31 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I Reinstalled it, tried command line commands, and Xcode compilation, but it still crashes. When I switched to using a .cpp for the main, it still didn&#39;t work, but the debugger reported: &quot;EXC_BAD_ACCESS:&quot;<br /><span class="source-code">AL_INLINE<span class="k2">(</span><span class="k1">void</span>, <a href="http://www.allegro.cc/manual/draw_sprite" target="_blank"><span class="a">draw_sprite</span></a>, <span class="k2">(</span><a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a> <span class="k3">*</span>bmp, <a href="http://www.allegro.cc/manual/BITMAP" target="_blank"><span class="a">BITMAP</span></a> <span class="k3">*</span>sprite, <span class="k1">int</span> x, <span class="k1">int</span> y<span class="k2">)</span></span><br />It was in an Allegro data file, &quot;draw.inl&quot; Does this mean my installation is messed up? The file I was trying to compile was the Lesson 5 source of the Loomsoft tutorial.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Fri, 21 Mar 2008 19:30:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Are you using the right allegro-config options?</p><p>Since I&#39;m not a MacOS X user myself , I&#39;m not entirely sure what&#39;s going on.<br />Post the exact command line options you used to compile and link your program when it failed. If those are correct then maybe we can narrow it down to a bad installation. Did you keep a text log transcipt of the entire Allegro library compilation and linking process? That would help determine whether Allegro was installed successfully for your setup.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Sat, 22 Mar 2008 04:30:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I just used the &#39;gcc myfile.c -o myprogram `allegro-config --frameworks`&#39; with my file&#39;s name. As for the installer log, I&#39;m not sure where it&#39;s at. It can&#39;t be a location problem, though, because I put an image in the same folder as the lesson 4 image. The lesson 4 image works, but the second I use my own, it doesn&#39;t. I adjusted the sizes, but still, it crashes. Oddly enough, When I try &quot;g++ lesson4.cpp -o myprogram `allegro-config --frameworks`&quot; (using lesson 4 image), it crashes.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Sat, 22 Mar 2008 19:46:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>To me this looks more like something is unusual about your bitmap, given that the lesson 4 bitmap doesn&#39;t crash and your bitmap does. Can you attach that bitmap for us to have a look at?</p><p>Pete
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Peter Hull)</author>
		<pubDate>Sat, 22 Mar 2008 23:30:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It&#39;s not very detailed, but…
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Sun, 23 Mar 2008 00:29:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I think you might have found a bug in Allegro, but on the other hand I can&#39;t believe this has never been seen before. I did some tracing with gdb and it fails here<br /><tt>
#4  0x0001a55f in create_bitmap_ex (color_depth=24, width=55, height=-53) at src/graphics.c:1052
1052       ASSERT(height &gt; 0);
</tt><br />According to the <a href="http://msdn2.microsoft.com/en-us/library/ms532290(VS.85).aspx">docs</a>, the height of a bitmap is allowed to be negative; it indicates a top-down bitmap rather than a bottom-up one. However Allegro doesn&#39;t handle that case.</p><p>What tool did you use to create your bitmap?</p><p>Pete
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Peter Hull)</author>
		<pubDate>Sun, 23 Mar 2008 02:00:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>AppleWorks for OSX, but I saved it using Preview.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Sun, 23 Mar 2008 02:33:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Just to check I&#39;m right, can you try with this bitmap? (works for me) What I did was used <tt>convert</tt> from ImageMagick to &#39;fix&#39; it<br /><tt>
convert shape.bmp picture.bmp
</tt></p><p>This bug doesn&#39;t seem to be OS X specific.</p><p>Pete
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Peter Hull)</author>
		<pubDate>Sun, 23 Mar 2008 03:38:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It worked with the bitmap. Does this mean I just have to download ImageMagick and fix my bitmaps before adding them to the file?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Sun, 23 Mar 2008 03:52:33 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>That image you linked doesn&#39;t show up in Explorer, but it does show a white box in FireFox.</p><p>I just think it&#39;s funny how Apple always finds those little known and rarely implemented features created by Microsoft and then implements them to make Microsoft look stupid.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Novy)</author>
		<pubDate>Sun, 23 Mar 2008 05:08:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Ron: I&#39;ll bet Bill G has his head in his hands right now!!</p><p>dac118: Depends if you&#39;re going to make all your bitmaps in AppleWorks and save them with preview. Anyway there will be a patch to Allegro coming along soon, which will fix this. You can check, but ImageMagick might already be installed (I can&#39;t remember if it was or if I installed it myself)</p><p>Pete
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Peter Hull)</author>
		<pubDate>Sun, 23 Mar 2008 13:10:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Thanks for all the help, now everything works! Although I do have one more question: how would I handle text input (i.e strings) using cin &gt;&gt; or something else?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (dac118)</author>
		<pubDate>Wed, 26 Mar 2008 05:24:44 +0000</pubDate>
	</item>
</rss>
