Fix accounts limit for non-x86 64-bit CPUs
This commit is contained in:
parent
d2cbf5cf4f
commit
8f3941a4c2
1 changed files with 2 additions and 1 deletions
|
|
@ -8,6 +8,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "base/timer.h"
|
#include "base/timer.h"
|
||||||
|
#include "base/build_config.h"
|
||||||
|
|
||||||
namespace Storage {
|
namespace Storage {
|
||||||
class Domain;
|
class Domain;
|
||||||
|
|
@ -31,7 +32,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
static constexpr auto kMaxAccountsWarn = 3;
|
static constexpr auto kMaxAccountsWarn = 3;
|
||||||
#ifdef Q_PROCESSOR_X86_64
|
#ifdef ARCH_CPU_64_BITS
|
||||||
static constexpr auto kMaxAccounts = 100;
|
static constexpr auto kMaxAccounts = 100;
|
||||||
#else
|
#else
|
||||||
static constexpr auto kMaxAccounts = 10;
|
static constexpr auto kMaxAccounts = 10;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue