~ubuntu-branches/ubuntu/trusty/fceux/trusty

« back to all changes in this revision

Viewing changes to src/drivers/sdl/sdl.cpp

  • Committer: Package Import Robot
  • Author(s): Joe Nahmias
  • Date: 2013-04-24 09:52:14 UTC
  • Revision ID: package-import@ubuntu.com-20130424095214-63qmk7df96smfwue
Tags: 2.2.1+dfsg0-1
* New upstream version
* refresh all patches
* fix_format_string_security_error.patch: use "%s" as format string
* d/gbp.conf: update options to make it easier to use gbp
* update copyright with research by Alexander Toresson

Show diffs side-by-side

added added

removed removed

Lines of Context:
934
934
        if(gtkIsStarted == true && noGui == 0)
935
935
        {
936
936
                GtkWidget* d;
937
 
                d = gtk_message_dialog_new(GTK_WINDOW(MainWindow), GTK_DIALOG_MODAL,        GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, errormsg);
 
937
                d = gtk_message_dialog_new(GTK_WINDOW(MainWindow), GTK_DIALOG_MODAL,        GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", errormsg);
938
938
                gtk_dialog_run(GTK_DIALOG(d));
939
939
                gtk_widget_destroy(d);
940
940
        }