mirror of https://github.com/mgba-emu/mgba.git
Qt: Change lossless setting to use WavPack audio
This commit is contained in:
parent
82ce165211
commit
137f3e5804
1
CHANGES
1
CHANGES
|
@ -100,6 +100,7 @@ Misc:
|
|||
- Qt: Add e-Card passing to the command line (closes mgba.io/i/2474)
|
||||
- Qt: Boot both a multiboot image and ROM with CLI args (closes mgba.io/i/1941)
|
||||
- Qt: Improve cheat parsing (fixes mgba.io/i/2297)
|
||||
- Qt: Change lossless setting to use WavPack audio
|
||||
- SDL: Support exposing an axis directly as the gyro value (closes mgba.io/i/2531)
|
||||
- Windows: Attach to console if present
|
||||
- Vita: Add bilinear filtering option (closes mgba.io/i/344)
|
||||
|
|
|
@ -167,7 +167,7 @@ void VideoView::updatePresets() {
|
|||
addPreset(m_ui.presetLossless, {
|
||||
"MKV",
|
||||
"libx264rgb",
|
||||
"FLAC",
|
||||
"WavPack",
|
||||
-1,
|
||||
0,
|
||||
{ m_nativeWidth, m_nativeHeight }
|
||||
|
|
|
@ -324,6 +324,11 @@
|
|||
<string>FLAC</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>WavPack</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Opus</string>
|
||||
|
|
Loading…
Reference in New Issue