Jump to content

sentixmetin

Member
  • Posts

    2
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by sentixmetin

  1. On 3/27/2023 at 10:17 PM, Ulthar said:

    //search:
     

    #ifdef __GNUC__
    #include <float.h>
    #include <tr1/unordered_map>
    #include <tr1/unordered_set>
    #define TR1_NS std::tr1
    #else
    #include <boost/unordered_map.hpp>
    #include <boost/unordered_set.hpp>
    #define TR1_NS boost
    #define isdigit iswdigit
    #define isspace iswspace
    #endif

    //change:
     

    #ifdef __GNUC__
    #include <float.h>
    #include <unordered_map>
    #include <unordered_set>
    #define TR1_NS std::tr1
    #else
    #include <unordered_map>
    #include <unordered_set>
    #define TR1_NS std
    #define isdigit iswdigit
    #define isspace iswspace
    #endif

    Compile game-db, and compile client source too.

     

    Change only in the game, why compile the bin client?

     

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.