~ubuntu-branches/ubuntu/trusty/teeworlds/trusty-updates

« back to all changes in this revision

Viewing changes to src/engine/shared/config.cpp

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-05-05 09:49:34 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20130505094934-uidw42ov1t0jlvrz
Tags: 0.6.2+dfsg-1
* New upstream release.
  - Update patches.
* Pass $CPPFLAGS to the build system.
* Switch to my @debian.org email address.
* Bump Standards-Version to 3.9.4, no changes needed.
* Change Vcs host to anonscm.debian.org.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        {
112
112
                if(!m_ConfigFile)
113
113
                        return;
114
 
#if defined(CONF_FAMILY_WINDOWS)
115
 
                static const char Newline[] = "\r\n";
116
 
#else
117
 
                static const char Newline[] = "\n";
118
 
#endif
119
114
                io_write(m_ConfigFile, pLine, str_length(pLine));
120
 
                io_write(m_ConfigFile, Newline, sizeof(Newline)-1);
 
115
                io_write_newline(m_ConfigFile);
121
116
        }
122
117
};
123
118