forked from wheremyfoodat/Panda3DS
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove extra variables, and fix aspect ratio from GLSurfaceRenderer
- Loading branch information
1 parent
88170a1
commit 1cc4b64
Showing
5 changed files
with
54 additions
and
28 deletions.
There are no files selected for viewing
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
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
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
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
14 changes: 9 additions & 5 deletions
14
src/pandroid/app/src/main/res/drawable/simple_analog_background.xml
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 |
---|---|---|
@@ -1,15 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item> | ||
<shape> | ||
<solid android:color="#0000"/> | ||
<stroke android:color="#6FFF" android:width="1dp"/> | ||
<corners android:radius="999dp"/> | ||
<padding | ||
android:left="10dp" | ||
android:top="10dp" | ||
android:right="10dp" | ||
android:bottom="10dp"/> | ||
</shape> | ||
</item> | ||
</selector> | ||
<item> | ||
<shape> | ||
<solid android:color="#0000"/> | ||
<stroke android:color="#6FFF" android:width="1dp"/> | ||
<corners android:radius="999dp"/> | ||
</shape> | ||
</item> | ||
</layer-list> |