~ubuntu-branches/ubuntu/wily/mupen64plus/wily-proposed

« back to all changes in this revision

Viewing changes to main/romcache.c

  • Committer: Bazaar Package Importer
  • Author(s): Sven Eckelmann
  • Date: 2011-02-06 11:57:54 UTC
  • mfrom: (10.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20110206115754-t3abbdfr1q3brszp
Tags: 1.5+dfsg1-15
* Upload to unstable
* Updated my maintainer e-mail address
* debian/patches:
  - Add inline_header.patch, Move inline list_empty to header to make it
    inlineable
* Keep dependencies on separate lines in debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
                    gui_update_rombrowser(g_romcache.length, g_romcache.clear);
269
269
 
270
270
                remove(cache_filename);
271
 
                main_message(1, 1, 0, OSD_BOTTOM_LEFT, tr("Rescanning rom cache."));
 
271
                main_message(1, 1, 0, OSD_BOTTOM_LEFT, "%s", tr("Rescanning rom cache."));
272
272
                rebuild_cache_file();
273
273
                gui_update_rombrowser(g_romcache.length, g_romcache.clear);
274
274
 
286
286
            case RCS_RESCAN:
287
287
                g_romcache.rcstask = RCS_BUSY;
288
288
 
289
 
                main_message(1, 1, 0, OSD_BOTTOM_LEFT, tr("Rescanning rom cache."));
 
289
                main_message(1, 1, 0, OSD_BOTTOM_LEFT, "%s", tr("Rescanning rom cache."));
290
290
                rebuild_cache_file();
291
291
                gui_update_rombrowser(g_romcache.length, g_romcache.clear);
292
292
                main_message(1, 1, 0, OSD_BOTTOM_LEFT, tr("Rom cache up to date. %d ROM%s."), g_romcache.length, (g_romcache.length==1) ? "" : "s");