Skip to content

Commit

Permalink
Pico-8 Wrapper configuration improvement (#1371)
Browse files Browse the repository at this point in the history
- Fix little stuttering on [bench
test](https://dl.dropbox.com/scl/fi/x3kgfpg18tum8b0zv26em/perf2.p8?rlkey=6xbyakr1ml95urt4t9lxxfcic&dl=0)
- Fix bin folder presence
- Fix config.txt file creation when it's not present
  • Loading branch information
schmurtzm authored Jan 23, 2024
1 parent bb59bfd commit d236839
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ blit_method 2 // 0 auto 1 software (slower but sometimes more reliable) 2 har

// :: System Settings

foreground_sleep_ms 5 // number of milliseconds to sleep each frame. Try 10 to conserve battery power
foreground_sleep_ms 10 // number of milliseconds to sleep each frame. Try 10 to conserve battery power

background_sleep_ms 10 // number of milliseconds to sleep each frame when running in the background

Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ fixconfig() {

if [ ! -f "$config_file" ]; then
echo "Config file not found, creating with default values."
return
fi

echo "Config checker: Validating display settings in config.txt"
Expand Down

0 comments on commit d236839

Please sign in to comment.