Skip to content

Commit 9cec2a2

Browse files
committed
fix windows type conversions stuff
1 parent 6f997d2 commit 9cec2a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/BloIO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ bool Pane::Load(bStream::CStream* stream, std::shared_ptr<Pane> parent, std::sha
447447

448448
if(numParams > 0){
449449
mPaneArgs["angle"] = true;
450-
mAngle = stream->readUInt16();
450+
mAngle = static_cast<float>(stream->readUInt16());
451451
numParams--;
452452
} else {
453453
mPaneArgs["angle"] = false;

0 commit comments

Comments
 (0)