<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/linapple/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/linapple/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/linapple/bugs/</id><updated>2018-10-19T17:36:38.426000Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>#6 linapple crashes at start</title><link href="https://sourceforge.net/p/linapple/bugs/6/?limit=25#fabe" rel="alternate"/><published>2018-10-19T17:36:38.426000Z</published><updated>2018-10-19T17:36:38.426000Z</updated><author><name>D.O. Dona</name><uri>https://sourceforge.net/u/dodona/</uri></author><id>https://sourceforge.net0c8150ba400aeb6251462b908c89f0bade863bc6</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;make&lt;br/&gt;
./linapple # at build directory&lt;br/&gt;
Timer has been initted!&lt;br/&gt;
Segmentation fault (core dumped)&lt;/p&gt;
&lt;p&gt;gcc (GCC) 8.1.1 20180712 (Red Hat 8.1.1-5)&lt;br/&gt;
Fedora 28&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>linapple crashes at start</title><link href="https://sourceforge.net/p/linapple/bugs/6/" rel="alternate"/><published>2018-10-19T17:35:59.482000Z</published><updated>2018-10-19T17:35:59.482000Z</updated><author><name>D.O. Dona</name><uri>https://sourceforge.net/u/dodona/</uri></author><id>https://sourceforge.netfdf67e1e0997c03f63251f73d230c19434704d2f</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;make&lt;br/&gt;
./linapple # at build directory&lt;br/&gt;
Timer has been initted!&lt;br/&gt;
Segmentation fault (core dumped)&lt;/p&gt;
&lt;p&gt;gcc (GCC) 8.1.1 20180712 (Red Hat 8.1.1-5)&lt;br/&gt;
Fedora 28&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Distorted Sound</title><link href="https://sourceforge.net/p/linapple/bugs/5/" rel="alternate"/><published>2018-07-06T13:42:10.930000Z</published><updated>2018-07-06T13:42:10.930000Z</updated><author><name>Roger Ryan</name><uri>https://sourceforge.net/u/rrosr/</uri></author><id>https://sourceforge.netb9f22996c86799d46c5d998d5c5f342edbf9534d</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi Andrey&lt;br/&gt;
The sound on Linapple is distorted on my machine.  I am running Debian Stretch on an AMD64.  I was abble to fix this problem by changing the usleep() to SDL_Delay() in the source files Frame.cpp and Timer.cpp.  The usleep() in the help screen routine made the most significant improvement to sound which would suggest that this is a problem with the usleep library.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Open Apple keys are not working</title><link href="https://sourceforge.net/p/linapple/bugs/4/" rel="alternate"/><published>2015-04-08T04:43:18.131000Z</published><updated>2015-04-08T04:43:18.131000Z</updated><author><name>Bill Chatfield</name><uri>https://sourceforge.net/u/bchat/</uri></author><id>https://sourceforge.net2b8e87b35b19887982eb8036ad00892016f77b19</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I have compiled linapple in Debian Wheezy. None of the OpenApple key sequences are working. They just send the normal character code. I'm running Merlin-8 2.58 in linapple. The key sequence to exit the editor is supposed to be OpenApple-Q. But, linapple just prints a Q in the editor rather than quiting the editor. When running Merlin in AppleWin in Wine, the OpenApple-Q works as expected to quit the editor. This also works as expected in when running in jace.jar. Thanks. :-)&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#3 Couldn't compile SerialComms.cpp</title><link href="https://sourceforge.net/p/linapple/bugs/3/?limit=25#7679" rel="alternate"/><published>2014-07-02T08:15:23.561000Z</published><updated>2014-07-02T08:15:23.561000Z</updated><author><name>gantgrid</name><uri>https://sourceforge.net/u/gantgrid/</uri></author><id>https://sourceforge.net205f4f4957027197952cce2f37ec7ee7b2beeb88</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I threw in some c headers&lt;/p&gt;
&lt;p&gt;included time.h and stdio.h&lt;/p&gt;
&lt;p&gt;Then I changed usleep to nanosleep.&lt;/p&gt;
&lt;p&gt;while(!g_bTimerToggle)&lt;br /&gt;
{&lt;br /&gt;
    //usleep(1);    // do nothing is something doing also? 0_0 --bb&lt;br /&gt;
    struct timespec tim, tim2;&lt;br /&gt;
    tim.tv_sec = 1;&lt;br /&gt;
    tim.tv_nsec = 500;&lt;br /&gt;
    nanosleep(&amp;amp;tim , &amp;amp;tim2);&lt;br /&gt;
}&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Couldn't compile SerialComms.cpp</title><link href="https://sourceforge.net/p/linapple/bugs/3/" rel="alternate"/><published>2014-06-28T21:05:15.350000Z</published><updated>2014-06-28T21:05:15.350000Z</updated><author><name>JAZ</name><uri>https://sourceforge.net/u/skirhir/</uri></author><id>https://sourceforge.net4f5b1a4f90b97e56697b27e69ef39bbeea6ff937</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Errors with lines:&lt;br /&gt;
 439                 close(m_hCommHandle); // close device (port?)&lt;br /&gt;
 676                 uBytesWritten = write(m_hCommHandle, &amp;amp;value, 1);&lt;br /&gt;
 947                 m_vRecvBytes = read(m_hCommHandle, m_RecvBuffer, 1);&lt;/p&gt;
&lt;p&gt;can't find close() write() and read() functions&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>#2 usleep not found</title><link href="https://sourceforge.net/p/linapple/bugs/2/?limit=25#8468" rel="alternate"/><published>2014-06-28T20:57:14.932000Z</published><updated>2014-06-28T20:57:14.932000Z</updated><author><name>JAZ</name><uri>https://sourceforge.net/u/skirhir/</uri></author><id>https://sourceforge.net4d28c62da4f302c1ee46f7421a1e54163dc274f7</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;by including unistd.h&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>usleep not found</title><link href="https://sourceforge.net/p/linapple/bugs/2/" rel="alternate"/><published>2014-06-28T20:56:07.333000Z</published><updated>2014-06-28T20:56:07.333000Z</updated><author><name>JAZ</name><uri>https://sourceforge.net/u/skirhir/</uri></author><id>https://sourceforge.net0a6ee06814ed562aa023a3e0cc2d13591d7b21df</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Frame.ccp and Timer.cpp can't find usleep()&lt;br /&gt;
This is solved by including:&lt;/p&gt;
&lt;h1 id="include-wzxhzdk0"&gt;include &lt;/h1&gt;&lt;/div&gt;</summary></entry><entry><title>Missing include</title><link href="https://sourceforge.net/p/linapple/bugs/1/" rel="alternate"/><published>2010-01-04T02:26:07Z</published><updated>2010-01-04T02:26:07Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.neta15971cd896f0d875085fd798bf2eb0b92d77d49</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Version 1.1b will not compile and errors out.&lt;/p&gt;
&lt;p&gt;Fix:&lt;br /&gt;
Place "#include &amp;lt;iostream&amp;gt;" into /src/Debug.h before line 7.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>