mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-03 09:32:34 +02:00
2019-04-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a type in 'RDLogPlay::move()'.
This commit is contained in:
parent
f8b223ec05
commit
9c79546026
@ -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()'.
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user