You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Fixing ambiguous reference to Json array index on Keyframe class
This commit is contained in:
@@ -369,7 +369,7 @@ void Keyframe::SetJsonValue(Json::Value root) {
|
||||
// loop through points
|
||||
for (long int x = 0; x < root["Points"].size(); x++) {
|
||||
// Get each point
|
||||
Json::Value existing_point = root["Points"][x];
|
||||
Json::Value existing_point = root["Points"][(Json::UInt) x];
|
||||
|
||||
// Create Point
|
||||
Point p;
|
||||
|
||||
Reference in New Issue
Block a user