diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-04-20 00:32:26 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-04-20 00:48:30 +0200 |
commit | 0163dfdcab5904252ae8dd0d043aaa6951714bb8 (patch) | |
tree | 5b7eafa697b64d7ab3724bdac061c3f63ceac298 /src | |
parent | 1396269d573256248bece97e1e291ef0c08e513f (diff) | |
download | VeraCrypt-0163dfdcab5904252ae8dd0d043aaa6951714bb8.tar.gz VeraCrypt-0163dfdcab5904252ae8dd0d043aaa6951714bb8.zip |
Windows: Reduce memory usage of Rescue Disk for cascades by 1KB.
Diffstat (limited to 'src')
-rw-r--r-- | src/Boot/Windows/BootDefs.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Boot/Windows/BootDefs.h b/src/Boot/Windows/BootDefs.h index fc5cad62..69c57dbc 100644 --- a/src/Boot/Windows/BootDefs.h +++ b/src/Boot/Windows/BootDefs.h @@ -14,11 +14,7 @@ #define TC_HEADER_Boot_BootDefs
// Total memory required (CODE + DATA + BSS + STACK + 0x100) in KBytes - determined from linker map.
-#ifdef TC_WINDOWS_BOOT_RESCUE_DISK_MODE
- #define TC__BOOT_MEMORY_REQUIRED 44
-#else
- #define TC__BOOT_MEMORY_REQUIRED 43
-#endif
+#define TC__BOOT_MEMORY_REQUIRED 43
#ifdef TC_WINDOWS_BOOT_SINGLE_CIPHER_MODE
# undef TC__BOOT_MEMORY_REQUIRED
|