diff options
author | 2018-03-23 21:22:29 -0500 | |
---|---|---|
committer | 2018-03-23 21:22:29 -0500 | |
commit | c8f58a92e666206ea1c04da88eb94f56a2d4b86d (patch) | |
tree | d1894271ef89abb0f84eb668c5d86569fa7f690b /plugins/cheatfind | |
parent | 0b3880b8622ffff851758eb5287fa78475787fea (diff) |
plugins/cheatfind: fix string formatting (nw)
Diffstat (limited to 'plugins/cheatfind')
-rw-r--r-- | plugins/cheatfind/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cheatfind/init.lua b/plugins/cheatfind/init.lua index 9ae904115c0..bc3bc09fd2e 100644 --- a/plugins/cheatfind/init.lua +++ b/plugins/cheatfind/init.lua @@ -533,7 +533,7 @@ function cheatfind.startplugin() count = count + #matches[#matches][num] end end - manager:machine():popmessage(count .. _(" total matches found")) + manager:machine():popmessage(string.format(_("%d total matches found"), count)) matches[#matches].count = count matchpg = 0 devsel = devcur |