Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions pkg/pocket/Cores/agg23.NES/interact.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,30 @@
{
"name": "Hide Overscan",
"id": 40,
"type": "check",
"type": "list",
"enabled": true,
"address": "0x200",
"persist": true,
"writeonly": true,
"defaultval": 1,
"value": 1
"address": "0x200",
"defaultval": 0,
"options": [
{
"value": 0,
"name": "Normal"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm unclear on what these values represent, but for backwards compatibility 0 and 1 should match the setting schema.

},
{
"value": 1,
"name": "Vertical Overscan"
},
{
"value": 2,
"name": "Borders"
},
{
"value": 3,
"name": "Everything"
}
]
},
{
"name": "Edge Masking",
Expand Down
58 changes: 45 additions & 13 deletions pkg/pocket/Cores/agg23.NES/video.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,70 @@
"video": {
"magic": "APF_VER_1",
"scaler_modes": [
{
{
"width": 256,
"height": 224,
"aspect_w": 64,
"aspect_h": 49,
"rotation": 0,
"mirror": 0
},
{
"width": 256,
"height": 224,
"aspect_w": 8,
"aspect_h": 7,
"rotation": 0,
"mirror": 0
},
{
"width": 256,
"height": 240,
"aspect_w": 128,
"aspect_h": 105,
"rotation": 0,
"mirror": 0
},
{
{
"width": 256,
"height": 240,
"aspect_w": 16,
"aspect_h": 15,
"rotation": 0,
"mirror": 0
},
{
"width": 256,
"height": 224,
"aspect_w": 64,
"aspect_h": 49,
{
"width": 280,
"height": 240,
"aspect_w": 4,
"aspect_h": 3,
"rotation": 0,
"mirror": 0
},
{
"width": 256,
"height": 224,
"aspect_w": 8,
"aspect_h": 7,
{
"width": 280,
"height": 240,
"aspect_w": 47,
"aspect_h": 40,
"rotation": 0,
"mirror": 0
}
},
{
"width": 284,
"height": 242,
"aspect_w": 4,
"aspect_h": 3,
"rotation": 0,
"mirror": 0
},
{
"width": 284,
"height": 242,
"aspect_w": 47,
"aspect_h": 40,
"rotation": 0,
"mirror": 0
},
Comment on lines +38 to +68
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is happening with these resolutions? Are they special overscan modes?

],
"display_modes": [
{
Expand Down
Loading