~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/sounddrv/soundbeos.cc

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
/* the next position to write */
51
51
static size_t write_position;
52
52
 
53
 
/* Buffer size (bytes).  */
54
 
static unsigned int buffer_len;
55
 
 
56
53
/* Size of fragment (bytes).  */
57
54
static unsigned int fragment_size;
58
55
 
99
96
 
100
97
static int beos_write(SWORD *pbuf, size_t nr)
101
98
{
102
 
        int i,j,count;
 
99
        int i,count;
103
100
        SWORD *p;
104
101
        
105
102
        count = nr / fragment_size;