From 6a18085500eee2c5d8a68959824a247433706fa0 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Sat, 6 Oct 2012 20:18:55 +0300 Subject: [PATCH] Minor fix to c728688 --- Library/Rainmeter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Rainmeter.cpp b/Library/Rainmeter.cpp index 9ce46bee..1724390d 100644 --- a/Library/Rainmeter.cpp +++ b/Library/Rainmeter.cpp @@ -70,7 +70,7 @@ int RainmeterMain(LPWSTR cmdLine) } // Disallow everything except !LoadLayout. - if (_wcsnicmp(cmdLine, L"!LoadLayout ", 11) == 0) + if (_wcsnicmp(cmdLine, L"!LoadLayout ", 13) == 0) { layout = cmdLine + 11; // Skip "!LoadLayout ". }