diff -r 57c618273d5c -r bbf46f59e123 fbs/fontandbitmapserver/sfbs/patchableconstantscli.cpp --- a/fbs/fontandbitmapserver/sfbs/patchableconstantscli.cpp Thu Aug 19 11:11:18 2010 +0300 +++ b/fbs/fontandbitmapserver/sfbs/patchableconstantscli.cpp Tue Aug 31 16:31:06 2010 +0300 @@ -65,8 +65,13 @@ This constant defines the minimum size of the virtual address range reserved for the large bitmap chunk. @note Default value: 64MB (0x04000000) +@note Emulator value 32MB (0x02000000) */ +#ifdef __WINS__ +EXPORT_C extern const TInt KFbServLargeChunkMinVirtualSize = 0x02000000; +#else EXPORT_C extern const TInt KFbServLargeChunkMinVirtualSize = 0x04000000; +#endif /** @SYMPatchable @@ -75,9 +80,10 @@ This constant defines the maximum size of the virtual address range reserved for the large bitmap chunk. @note Default value: 256MB (0x10000000) +@note Emulator value 48MB (0x03000000) */ #ifdef __WINS__ -EXPORT_C extern const TInt KFbServLargeChunkMaxVirtualSize = 0x8000000; +EXPORT_C extern const TInt KFbServLargeChunkMaxVirtualSize = 0x03000000; #else EXPORT_C extern const TInt KFbServLargeChunkMaxVirtualSize = 0x10000000; #endif