~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/defaults.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "defaults.h"
23
23
 
24
 
#include "being.h"
25
24
#include "client.h"
26
 
#include "graphics.h"
27
25
#include "graphicsmanager.h"
28
 
#include "keydata.h"
29
 
 
30
 
#include "utils/stringutils.h"
31
 
 
32
 
 
33
 
#include <stdlib.h>
 
26
 
 
27
#include "being/being.h"
 
28
 
 
29
#include "input/keydata.h"
 
30
 
 
31
#include "render/graphics.h"
34
32
 
35
33
#include "debug.h"
36
34
 
297
295
#endif
298
296
    AddDEF("logInput", false);
299
297
    AddDEF("highlightWords", "");
 
298
    AddDEF("globalsFilter", "Sagatha");
300
299
    AddDEF("selfMouseHeal", true);
301
300
    AddDEF("serverslistupdate", "");
302
301
    AddDEF("fadeoutmusic", true);
320
319
    AddDEF("cfgver", 0);
321
320
    AddDEF("enableDebugLog", false);
322
321
    AddDEF("doubleClick", true);
 
322
    AddDEF("useDiagonalSpeed", true);
323
323
    return configData;
324
324
}
325
325