Fold some long lines
This commit is contained in:
parent
3c06face00
commit
a63efffa14
|
@ -188,7 +188,11 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
|
||||
/// <exception cref="MoviePlatformMismatchException"><paramref name="record"/> is <see langword="false"/> and <paramref name="movie"/>.<see cref="IBasicMovieInfo.SystemID"/> does not match <paramref name="systemId"/>.<see cref="IEmulator.SystemId"/></exception>
|
||||
public void QueueNewMovie(IMovie movie, bool record, string systemId, IDictionary<string, string> preferredCores)
|
||||
public void QueueNewMovie(
|
||||
IMovie movie,
|
||||
bool record,
|
||||
string systemId,
|
||||
IDictionary<string, string> preferredCores)
|
||||
{
|
||||
if (movie.IsActive() && movie.Changes)
|
||||
{
|
||||
|
|
|
@ -77,7 +77,11 @@ namespace BizHawk.Client.Common
|
|||
/// When initializing a movie, it will be stored until Rom loading processes have been completed, then it will be moved to the Movie property
|
||||
/// If an existing movie is still active, it will remain in the Movie property while the new movie is queued
|
||||
/// </summary>
|
||||
void QueueNewMovie(IMovie movie, bool record, string systemId, IDictionary<string, string> preferredCores);
|
||||
void QueueNewMovie(
|
||||
IMovie movie,
|
||||
bool record,
|
||||
string systemId,
|
||||
IDictionary<string, string> preferredCores);
|
||||
|
||||
/// <summary>
|
||||
/// Sets the Movie property with the QueuedMovie, clears the queued movie, and starts the new movie
|
||||
|
|
Loading…
Reference in New Issue