diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-28 12:45:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-28 12:45:04 +0000 |
commit | 4f067273c1d093da8480ea9f511b1ce41071efe2 (patch) | |
tree | ff55e2eafac037ce7f7e06b35af56d4bb7f52fff /protocols/Xfire/src/Xfire_gamelist.cpp | |
parent | 3fa621ffde27485da36638442224b37ade3ee8f3 (diff) |
fix for an empty menu in contact's root
git-svn-id: http://svn.miranda-ng.org/main/trunk@14424 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/Xfire_gamelist.cpp')
-rw-r--r-- | protocols/Xfire/src/Xfire_gamelist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Xfire/src/Xfire_gamelist.cpp b/protocols/Xfire/src/Xfire_gamelist.cpp index f62989fec3..052f2fd624 100644 --- a/protocols/Xfire/src/Xfire_gamelist.cpp +++ b/protocols/Xfire/src/Xfire_gamelist.cpp @@ -242,7 +242,7 @@ void Xfire_gamelist::clearGamelist() { void Xfire_gamelist::createDummyMenuItem()
{
CLISTMENUITEM mi = { 0 };
- mi.hParentMenu = Menu_CreateRoot(MO_MAIN, LPGENW("Start game"), 500084000);
+ mi.hParentMenu = Menu_CreateRoot(MO_MAIN, LPGENT("Start game"), 500084000);
mi.position = 500090001;
mi.name.a = Translate("Please wait...");
mi.icolibItem = LoadIcon(hinstance, MAKEINTRESOURCE(ID_OP));
|