2019-04-29 Fred Gleason <fredg@paravelsystems.com>

* Fixed a type in 'RDLogPlay::move()'.
This commit is contained in:
Fred Gleason 2019-04-29 13:52:26 -04:00
parent f8b223ec05
commit 9c79546026
2 changed files with 3 additions and 1 deletions

View File

@ -18608,3 +18608,5 @@
2019-04-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in escaping JSON strings that failed to handle
control characters properly.
2019-04-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a type in 'RDLogPlay::move()'.

View File

@ -1004,7 +1004,7 @@ void RDLogPlay::move(int from_line,int to_line)
}
if(to_line<size()) {
if(logLine(to_line)->hasCustomTransition()) {
if(to_line>to_line) {
if(from_line>to_line) {
mod_line[1]=to_line;
}
else {