#749 Internal viewer Sprite fill color is wrong sometimes: fixed

This commit is contained in:
2014-12-14 15:30:59 +01:00
parent caaee42318
commit 60f170dcda
32 changed files with 225 additions and 192 deletions
@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.␍ */
* License along with this library.
*/
package com.jpexs.decompiler.flash.flv;
import java.io.ByteArrayOutputStream;
@@ -65,7 +66,7 @@ public class AUDIODATA extends DATA {
flv.writeUB(1, soundType ? 1 : 0);
flv.write(soundData);
} catch (IOException ex) {
//ignore
// ignore
}
return baos.toByteArray();
}
@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.␍ */
* License along with this library.
*/
package com.jpexs.decompiler.flash.flv;
import java.io.ByteArrayOutputStream;
@@ -43,7 +44,7 @@ public class VIDEODATA extends DATA {
flv.writeUB(4, codecId);
flv.write(videoData);
} catch (IOException ex) {
//ignore
// ignore
}
return baos.toByteArray();
}