reduce size of clipboard buffer. fixes #15

This commit is contained in:
walker0643 2018-02-24 17:41:28 -05:00
parent 15c83eca48
commit 60d121aed3
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
using namespace std;
static const size_t g_chunkSize = 512 * 1024; //512kb
static const size_t g_chunkSize = 32 * 1024; //32kb
bool StreamChunker::s_isChunkingFile = false;
bool StreamChunker::s_interruptFile = false;