Skip to content

Commit

Permalink
Fix issue where 1080p means 720p
Browse files Browse the repository at this point in the history
It appears that the enumeration was not 100% the same in the settings causing 720p to be 640p, and 1080p to be 720p.

This fixes #237
  • Loading branch information
dagwieers authored and peak3d committed May 11, 2019
1 parent ec13716 commit 1f2de72
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions inputstream.adaptive/resources/settings.xml.in
Expand Up @@ -20,8 +20,9 @@
<options>
<option label="30150">0</option> <!-- Max -->
<option label="30151">1</option> <!-- 480p -->
<option label="30153">2</option> <!-- 720p -->
<option label="30154">3</option> <!-- 1080p -->
<option label="30152">2</option> <!-- 640p -->
<option label="30153">3</option> <!-- 720p -->
<option label="30154">4</option> <!-- 1080p -->
</options>
</constraints>
<control type="spinner" format="string" />
Expand Down

0 comments on commit 1f2de72

Please sign in to comment.