diff options
author | golem131 <golem131@users.noreply.github.com> | 2018-01-26 23:20:42 +0300 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-01-26 20:20:42 +0000 |
commit | b82622e9948d1c90fc628739c7f328816214fb33 (patch) | |
tree | 4b0d306460c302258953f758c19cba60bad2ee06 /src/renderer | |
parent | 59b561b440060e7b0d13160fb69519d127e6c687 (diff) | |
download | alacritty-b82622e9948d1c90fc628739c7f328816214fb33.tar.gz alacritty-b82622e9948d1c90fc628739c7f328816214fb33.zip |
Update dependencies
Updated the version of some dependencies.
This also changes to a new clippy version so clippy can work with the latest nightly compiler again. Some issues created by new lints have been fixed.
Diffstat (limited to 'src/renderer')
-rw-r--r-- | src/renderer/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs index c226a88d..c0e4a9f3 100644 --- a/src/renderer/mod.rs +++ b/src/renderer/mod.rs @@ -471,7 +471,7 @@ impl Batch { } /// Maximum items to be drawn in a batch. -const BATCH_MAX: usize = 65_536; +const BATCH_MAX: usize = 0x1_0000; const ATLAS_SIZE: i32 = 1024; impl QuadRenderer { |