From 15c53d40f5f23ff75924bb13c081a4a0fc5724cc Mon Sep 17 00:00:00 2001 From: sum2012 Date: Thu, 29 Jan 2015 22:59:05 +0800 Subject: [PATCH] Make "Failed to load state" translatable --- Core/SaveState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/SaveState.cpp b/Core/SaveState.cpp index 2d946067bf..af3200eda4 100644 --- a/Core/SaveState.cpp +++ b/Core/SaveState.cpp @@ -324,7 +324,7 @@ namespace SaveState Load(fn, callback, cbUserData); } else { I18NCategory *s = GetI18NCategory("Screen"); - osm.Show("Failed to load state. Error in the file system.", 2.0); + osm.Show(s->T("Failed to load state. Error in the file system."), 2.0); if (callback) callback(false, cbUserData); }