forked from ValveSoftware/Proton
-
-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patches: add ffxiv hydaelyn intro fix (again)
- Loading branch information
1 parent
c10e04a
commit cef4d47
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
patches/game-patches/ffxiv_hydaelyn_intro_playback_fix.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/dlls/winegstreamer/wma_decoder.c b/dlls/winegstreamer/wma_decoder.c | ||
index eff8c414ea8..ae54e7336e0 100644 | ||
--- a/dlls/winegstreamer/wma_decoder.c | ||
+++ b/dlls/winegstreamer/wma_decoder.c | ||
@@ -1030,13 +1030,6 @@ HRESULT wma_decoder_create(IUnknown *outer, IUnknown **out) | ||
|
||
TRACE("outer %p, out %p.\n", outer, out); | ||
|
||
- if (!(transform = wg_transform_create(&input_format, &output_format, &attrs))) | ||
- { | ||
- ERR_(winediag)("GStreamer doesn't support WMA decoding, please install appropriate plugins\n"); | ||
- return E_FAIL; | ||
- } | ||
- wg_transform_destroy(transform); | ||
- | ||
if (!(decoder = calloc(1, sizeof(*decoder)))) | ||
return E_OUTOFMEMORY; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters