summaryrefslogtreecommitdiff
path: root/XMPFiles
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2016-06-06 00:27:20 -0400
committerHubert Figuière <hub@figuiere.net>2016-06-06 00:27:20 -0400
commit2191e73ebb6a0dc6b98f4e68cd8d5ea49b7cde61 (patch)
tree871126b4d7f12ad0e601a51d076b267339e14bc5 /XMPFiles
parentfb77c80de925d3b1124a11e597c8bd8c989c8a10 (diff)
Don't assign a float to a byte. - likely a typo
Diffstat (limited to 'XMPFiles')
-rw-r--r--XMPFiles/source/FileHandlers/MP3_Handler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMPFiles/source/FileHandlers/MP3_Handler.cpp b/XMPFiles/source/FileHandlers/MP3_Handler.cpp
index 3215e72..55211c9 100644
--- a/XMPFiles/source/FileHandlers/MP3_Handler.cpp
+++ b/XMPFiles/source/FileHandlers/MP3_Handler.cpp
@@ -127,8 +127,8 @@ MP3_MetaHandler::MP3_MetaHandler ( XMPFiles * _parent )
this->newFramesSize = 0;
this->tagIsDirty = false;
this->mustShift = false;
- this->majorVersion = 2.3;
- this->minorVersion = 2.3;
+ this->majorVersion = 2;
+ this->minorVersion = 3;
this->hasID3Tag = false;
this->hasFooter = false;
this->extHeaderSize = 0;