~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/vdc/vdc.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include "resources.h"
44
44
#include "screenshot.h"
45
45
#include "snapshot.h"
46
 
#include "util.h"
47
46
#include "vdc-cmdline-options.h"
48
47
#include "vdc-draw.h"
49
48
#include "vdc-resources.h"
136
135
static int init_raster(void)
137
136
{
138
137
    raster_t *raster;
139
 
    char *title;
140
138
 
141
139
    raster = &vdc.raster;
142
140
 
157
155
        return -1;
158
156
    }
159
157
 
160
 
    title = util_concat("VICE: ", machine_name, " emulator VDC window", NULL);
161
 
    raster_set_title(raster, title);
162
 
    lib_free(title);
 
158
    raster_set_title(raster, machine_name);
163
159
 
164
160
    if (raster_realize(raster) < 0)
165
161
        return -1;