diff options
author | skidd13 <skidd13@openttd.org> | 2008-11-02 11:20:15 +0000 |
---|---|---|
committer | skidd13 <skidd13@openttd.org> | 2008-11-02 11:20:15 +0000 |
commit | 9b282b3e51864af68b752831f68d719e9926c206 (patch) | |
tree | 852231dcb9853107b3876ca33a89cbeb47f20133 /src/music | |
parent | 44a774a2775bfdbf270eac3adcd778e1ae4cba93 (diff) | |
download | openttd-9b282b3e51864af68b752831f68d719e9926c206.tar.xz |
(svn r14555) -Codechange: replace ttd_strlcat and ttd_strlcpy with strecat and strecpy where direct conversion is possible
Diffstat (limited to 'src/music')
-rw-r--r-- | src/music/extmidi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/music/extmidi.cpp b/src/music/extmidi.cpp index a4c5bfb00..cba772506 100644 --- a/src/music/extmidi.cpp +++ b/src/music/extmidi.cpp @@ -34,7 +34,7 @@ void MusicDriver_ExtMidi::Stop() void MusicDriver_ExtMidi::PlaySong(const char* filename) { - ttd_strlcpy(this->song, filename, lengthof(this->song)); + strecpy(this->song, filename, lastof(this->song)); this->DoStop(); } |