[HELP] [FAQ] I have a question

Results 1 to 2 of 2
  1. #1
    Valued Member Mateuus is offline
    MemberRank
    Mar 2013 Join Date
    123Posts

    shout [HELP] [FAQ] I have a question

    I have a question.


    Change build to Release for Studio & again Change build to Final for WarZ Client

    Quote Originally Posted by DNC View Post

    9
    C:\Shared\InstallableFiles\WarZ\bin\src\EclipseStudio\WarZ.sln
    Change build to Release for Studio & again Change build to Final for WarZ Client
    Build

    I give "build" and only appears the "Studio.exe" where is "WarZ.exe" ?





    2º Error: Cannot open language file 'data/langpack/english.lang
    Quote Originally Posted by finito View Post
    When the Eternity project is built using Final configuration. There are #ifdef used throughout the code that make changes.
    One of those changes is to not allow direct loading of files in the data folder but use package files only.

    Code:
    r3dFile* r3dFile_IntOpen(const char* fname, const char* mode)
    {
      r3dCSHolder csHolder(g_FileSysCritSection);
      bool allowDirectAccess = true;
    
    #ifdef FINAL_BUILD
      // disable all data/ files in final build
      if(strnicmp(fname, "data/", 5) == 0)
        allowDirectAccess = false;
    #endif
    p.s. These two posts should be in Help section.

    ss.png



    What do I have to change?



    @Edit:

    just change from false to true
    allowDirectAccess = false;

    allowDirectAccess = true;
    Last edited by Mateuus; 12-04-13 at 08:33 PM.


  2. #2
    Member allmymind is offline
    MemberRank
    Nov 2006 Join Date
    70Posts

    Re: [HELP] [FAQ] I have a question

    same here :(



Advertisement