Originally committed to SVN as r1606.
This commit is contained in:
Rodrigo Braz Monteiro 2007-10-18 03:12:18 +00:00
parent 9058955430
commit 5f7d953f43
2 changed files with 3 additions and 0 deletions

View File

@ -162,6 +162,7 @@ Please visit http://aegisub.net to download latest version
- Added "Effect" field to the Select Lines dialog. (demi`)
- Added a new "Video Details" dialog, that lists some information regarding the currently open video. (demi`)
- Added support for reading keyframes from xvid pass files. (demi`)
- Added offsetting support to the resolution resampler. (AMZ)
= 1.10 beta - 2006.08.07 ===========================

View File

@ -212,6 +212,8 @@ wxString TextFileReader::ReadLineFromFile() {
#else
while (ch != L'\n' && !file.eof()) {
// Read two chars from file
charbuffer[0] = 0;
charbuffer[1] = 0;
file.read(charbuffer,2);
#endif