diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-02-23 11:27:13 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-02-23 11:27:13 +0000 |
commit | 465f5035c1059262b8e0b938b971f0a26015ca36 (patch) | |
tree | 0afd134d261311c96f629547c2a1348e8e905a65 /protocols/Xfire/src/Xfire_game.cpp | |
parent | 3350965c81488d6019936b3d6bf3b96decaf6709 (diff) |
XFire: Minor fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@12243 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/Xfire_game.cpp')
-rw-r--r-- | protocols/Xfire/src/Xfire_game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Xfire/src/Xfire_game.cpp b/protocols/Xfire/src/Xfire_game.cpp index 0a0657e72d..12acb76b07 100644 --- a/protocols/Xfire/src/Xfire_game.cpp +++ b/protocols/Xfire/src/Xfire_game.cpp @@ -192,11 +192,11 @@ BOOL Xfire_game::checkpath(PROCESSENTRY32* processInfo) TCHAR fpath[MAX_PATH] = _T("");
//lese den pfad des spiels aus
- GetModuleFileNameEx(op, NULL, fpath, sizeof(fpath));
+ GetModuleFileNameEx(op, NULL, fpath, SIZEOF(fpath));
//8.3 pfade umwandeln, nur wenn sich eine tilde im string befindet
if (_tcschr(fpath, '~'))
- GetLongPathName(fpath, fpath, sizeof(fpath));
+ GetLongPathName(fpath, fpath, SIZEOF(fpath));
//alles in kelinbuchstaben umwandeln
this->strtolowerT(fpath);
|