summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-05 19:07:29 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-05 19:07:29 +0000
commit704ab8f7cc436c00c151e5608429737acb2e69ac (patch)
treea09008399b473e9f5feaf058cc9c931d3844eb1e /gui
parent342cbb2285ca63c987622bb8ee9891d6f8dd1a65 (diff)
downloadpcsxr-704ab8f7cc436c00c151e5608429737acb2e69ac.tar.gz
.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87087 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'gui')
-rwxr-xr-xgui/GtkGui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/GtkGui.c b/gui/GtkGui.c
index d531128e..cdb5de9e 100755
--- a/gui/GtkGui.c
+++ b/gui/GtkGui.c
@@ -1102,7 +1102,7 @@ void SysErrorMessage(gchar *primary, gchar *secondary) {
primary,
NULL);
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(message_dialog),
- secondary);
+ "s", secondary);
gtk_dialog_run(GTK_DIALOG(message_dialog));
gtk_widget_destroy(message_dialog);
@@ -1121,7 +1121,7 @@ void SysInfoMessage(gchar *primary, gchar *secondary) {
primary,
NULL);
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(message_dialog),
- secondary);
+ "s", secondary);
gtk_dialog_run(GTK_DIALOG(message_dialog));
gtk_widget_destroy(message_dialog);