Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
Last commit
Browse files Browse the repository at this point in the history
The readme file has been updated to provide a simple solution and to inform users that this project is no longer maintained.
  • Loading branch information
xDAN7 authored Aug 13, 2022
1 parent c977eb6 commit 5c95173
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Playnite Fullscreen DeSmuME
This is the repository for the Playnite Generic plugin "Fullscreen DeSmuME". Are you annoyed that there is seemingly no way to get DeSmuME into full screen mode? This plugin tries to solve the issue!

## NO LONGER MAINTAINED
This project is no longer maintained. If you are still looking, here is a possible solution:
```powershell
# Wait until the window is probably ready
# If your computer is too slow, try increasing the number
Start-Sleep -Milliseconds 1000;
# Send key combination {Alt} + {Return}
$wshell = New-Object -ComObject wscript.shell;
$wshell.SendKeys('%{ENTER}');
```
Just add this to the post startup script in the emulator configuration to automatically put the emulator into full screen mode.<br>
(Works on Playnite 9.19)

## How does it work?
1. Each time a game is started, it checks whether the emulator matches the one specified in the settings.
2. Then the number of milliseconds specified in the settings is waited for (default: 1000ms).
Expand Down

0 comments on commit 5c95173

Please sign in to comment.