Changeset 459 for Daodan


Ignore:
Timestamp:
Aug 24, 2009, 1:32:06 PM (15 years ago)
Author:
rossy
Message:

lolol bugfix

Location:
Daodan
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Daodan/Flatline/src/Flatline.h

    r457 r459  
    3131
    3232bool Net_Listen(uint16_t port, bool (*packet_callback)(char* data, int datalen, int from));
    33 int Net_CreateSocket(uint16_t port);
    34 bool Net_Send(int socket, int ip, uint16_t port, char* data, int datalen);
    35 void Net_CloseSocket(int sock);
     33
     34int NetUDPSocket_Create(uint16_t port);
     35bool NetUDPSocket_Send(int socket, int ip, uint16_t port, char* data, int datalen);
     36void NetUDPSocket_Close(int sock);
     37
    3638bool FLrListen_PacketCallback(char* data, int datalen, int from);
    3739bool FLrListen_Run();
  • Daodan/src/Daodan.c

    r455 r459  
    3939bool patch_cheattable = true;
    4040bool patch_argb8888 = true;
     41bool patch_killvtune = true;
    4142
    4243bool patch_safeprintf = true;
     
    162163        }
    163164       
     165        // ARGB8888 textures
    164166        if (patch_argb8888)
    165167        {
     
    167169                DDrPatch_Byte  (OniExe + 0x00135af4, 0x0B);
    168170        }
     171       
     172        // Disable loading the vtuneapi.dll
     173        if (patch_killvtune)
     174                DDrPatch_Byte  (OniExe + 0x00026340, 0xC3);
    169175       
    170176        return true;
     
    229235                        else if (!stricmp(name, "argb8888"))
    230236                                patch_argb8888 = !stricmp(inifile_cleanstr(value), "true");
     237                        else if (!stricmp(name, "killvtune"))
     238                                patch_killvtune = !stricmp(inifile_cleanstr(value), "true");
    231239                        else if (!stricmp(name, "safeprintf"))
    232240                                patch_safeprintf = !stricmp(inifile_cleanstr(value), "true");
Note: See TracChangeset for help on using the changeset viewer.