diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-05-23 07:22:46 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-05-23 07:22:46 +0000 |
commit | d136d0ccb00bb6b0f7ec42388afa9ef07094abf5 (patch) | |
tree | 27b2a1a2dfb7bc373777174c5af4628fa214ff4c /protocols | |
parent | ef4d633f2e5ea636699fc177c260f95b342250f3 (diff) |
revert - server does not accept avatars larger than 64x64
git-svn-id: http://svn.miranda-ng.org/main/trunk@13770 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/IcqOscarJ/src/icqosc_svcs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/IcqOscarJ/src/icqosc_svcs.cpp b/protocols/IcqOscarJ/src/icqosc_svcs.cpp index e85460fefb..ff7c0d5f1f 100644 --- a/protocols/IcqOscarJ/src/icqosc_svcs.cpp +++ b/protocols/IcqOscarJ/src/icqosc_svcs.cpp @@ -293,8 +293,8 @@ INT_PTR CIcqProto::GetAvatarCaps(WPARAM wParam, LPARAM lParam) if (wParam == AF_MAXSIZE) {
POINT *size = (POINT*)lParam;
if (size) {
- size->x = 600;
- size->y = 600;
+ size->x = 64;
+ size->y = 64;
}
return 0;
}
|