Skip to content

Commit ddde1c6

Browse files
committed
Merge branch 'main' into dev/sqlite3
2 parents f12221d + 0f4a513 commit ddde1c6

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="./logo.png" />
1+
<img src="./backdrop.jpg" />
22

33
# YUP! Cross-Platform Application And Plugin Development Library
44

@@ -26,8 +26,8 @@
2626
</div>
2727

2828
<div style="display: flex; width: 100%; flex-wrap: nowrap;">
29-
<a href="./examples/graphics/source/examples/AudioGraph.h"><img src="./docs/images/yup_audio_graph.png" style="width:49%;" /></a>
30-
<a href="./examples/graphics/source/examples/AudioFileDemo.h"><img src="./docs/images/yup_audio_waveform.png" style="width:49%;" /></a>
29+
<a href="./examples/graphics/source/examples/AudioGraph.h"><img src="./docs/images/yup_audio_graph.png" style="width:56.5%;" /></a>
30+
<a href="./examples/graphics/source/examples/AudioFileDemo.h"><img src="./docs/images/yup_audio_waveform.png" style="width:41.5%;" /></a>
3131
</div>
3232

3333
<div style="display: flex; width: 100%; flex-wrap: nowrap;">

backdrop.jpg

270 KB
Loading

logo.png

-75.3 KB
Binary file not shown.

modules/yup_core/zip/yup_ZipFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ struct ZipFile::Builder::Item
687687

688688
static void writeTimeAndDate (OutputStream& target, Time t)
689689
{
690-
target.writeShort ((short) (t.getSeconds() + (t.getMinutes() << 5) + (t.getHours() << 11)));
690+
target.writeShort ((short) ((t.getSeconds() >> 1) + (t.getMinutes() << 5) + (t.getHours() << 11)));
691691
target.writeShort ((short) (t.getDayOfMonth() + ((t.getMonth() + 1) << 5) + ((t.getYear() - 1980) << 9)));
692692
}
693693

0 commit comments

Comments
 (0)