Skip to content

Commit

Permalink
Merge pull request #4 from bjornbytes/user-directory-fix
Browse files Browse the repository at this point in the history
Fix left-hand window on Android;
  • Loading branch information
immortalx74 authored Nov 4, 2022
2 parents 6d475ca + 0242f49 commit 4b13df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function lovr.draw( pass )
UI.Begin( "ThirdWindow", lh_pose )
UI.ImageButton( "ui/lovrlogo.png", 32, 32 )
UI.Label( "Operating System: " .. lovr.system.getOS() )
UI.Label( "User Directory: " .. lovr.filesystem.getUserDirectory() )
UI.Label( "User Directory: " .. (lovr.filesystem.getUserDirectory() or 'N/A') )
UI.Label( "Average Delta: " .. string.format( "%.6f", lovr.timer.getAverageDelta() ) )
if UI.Button( "Close Me" ) then
window3_open = false
Expand Down

0 comments on commit 4b13df3

Please sign in to comment.