Thread: YaPB 2.25
View Single Post
YaPB 2.25
Old
  (#1)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 452
Join Date: Nov 2005
Location: Saint-Petersburg
Default YaPB 2.25 - 02-08-2006

YaPB was release through updater tool. You can download it now. Changes is available in updater too.

WARNING:: You may encounter crashes with current version of updater, so before starting download, please update this tool to version 1.41. Version 1.41 available at http://yapb.cfegames.com/update/.

Latest sources are also included.

Damn! Linux version is not functional. Until i've download GCC 3.x.x, you need to compile it youself:

Changes to yapb 2.25 to work compile ok:
First compile with this makefile.
Second remove this code from yapb.h:
Code:
inline void *operator new (size_t iSize) { return calloc (1, iSize); }
inline void *operator new [] (size_t iSize) { return calloc (1, iSize); }
inline void operator delete (void *pMemPtr) { if (pMemPtr) free (pMemPtr); }
inline void operator delete [] (void *pMemPtr) { if (pMemPtr) free (pMemPtr); }
I'm really sorrying for problems with linux.... And thanks to THE_STORM for tested and solved problems!!

Last edited by jeefo; 02-08-2006 at 16:10..
  
Reply With Quote