Re: [Plib-users] problem with fnt and release mode
Brought to you by:
sjbaker
From: Sam S. <sa...@sp...> - 2000-12-20 16:13:15
|
Well I can suggest a few things that could be the cause of this problem. Try turning off all the optimisations for your release build and see if that has an affect. If that doesn't then the only thing I can think of is VC++'s stupid variable initialisation. In debug mode VC++ zero's or NULLs all values, but in release mode they just just get set to random crap. Very stupid I know (surely you really want the random values when you are *debugging*?), but that could be hiding an obscure bug in this instance. Sam ----- Original Message ----- From: "Eric Desrosiers" <sre...@ho...> To: <pli...@li...> Sent: Wednesday, December 20, 2000 7:28 AM Subject: [Plib-users] problem with fnt and release mode Hello, I am compiling the font library using MSVC++ 5.0. When I compile in debug mode, everything is working fine, but when I compile the library in release mode, the output text is trashy. Only the first letter is right. Does anyone ever had that problem? Eric |