Renamed IVideo implementations

To match the interface they are implementing.
This commit is contained in:
penev92
2021-09-22 02:27:37 +03:00
committed by Matthias Mailänder
parent 6f0509d235
commit 248b8d1102
4 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ namespace OpenRA.Mods.Cnc.VideoLoaders
if (!IsWsa(s))
return false;
video = new WsaReader(s, useFramePadding);
video = new WsaVideo(s, useFramePadding);
return true;
}