From 1cf2a792aef1d3d7c4258ee6b19103494f51e1a1 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Wed, 27 Nov 2019 17:53:41 +0800 Subject: [PATCH] Reverse unneeded change from merge --- code/nel/include/nel/misc/path.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/nel/include/nel/misc/path.h b/code/nel/include/nel/misc/path.h index de46532b7..5a9c417a2 100644 --- a/code/nel/include/nel/misc/path.h +++ b/code/nel/include/nel/misc/path.h @@ -279,8 +279,8 @@ private: struct CMCFileEntry { char *Name; // Normal case (the search is done by using nlstricmp) - uint32 idPath : 20; // Path (not with file at the end) - look in the SSMpath (1048576 different path allowed) - uint32 idExt : 11; // real extension of the file if remapped - look in the SSMext (2048 different extension allowed) + uint32 idPath : 16; // Path (not with file at the end) - look in the SSMpath (65536 different path allowed) + uint32 idExt : 15; // real extension of the file if remapped - look in the SSMext (32768 different extension allowed) uint32 Remapped : 1; // true if the file is remapped };