~ubuntu-branches/debian/sid/freeciv/sid

« back to all changes in this revision

Viewing changes to client/gui-gtk-2.0/sprite.c

  • Committer: Package Import Robot
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2011-08-28 22:40:00 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: package-import@ubuntu.com-20110828224000-j2r1erewlem25dox
Tags: 2.3.0-1
[ Karl Goetz ]
* New upstream version.
* Fix themes_sdl_use_system_fonts.diff to apply cleanly on 2.3.0
* Massage work_around_unity_induced_breakage.diff to get it
  applying to the new codebase (The patch assumes commits made
  after 2.3.0 was tagged upstream).

[ Clint Adams ]
* Fudge build system to think there is no libtool mismatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#include <config.h>
16
16
#endif
17
17
 
 
18
/* utility */
18
19
#include "log.h"
 
20
#include "mem.h"
 
21
#include "shared.h"
19
22
 
20
23
#include "sprite.h"
21
24
 
195
198
  GdkPixbuf *im;
196
199
 
197
200
  if (!(im = gdk_pixbuf_new_from_file(filename, NULL))) {
198
 
    freelog(LOG_FATAL, "Failed reading graphics file: \"%s\"", filename);
 
201
    log_fatal("Failed reading graphics file: \"%s\"", filename);
199
202
    exit(EXIT_FAILURE);
200
203
  }
201
204