Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

script: use "display" instead of "value" in debug output #1568

Merged
merged 1 commit into from
Oct 8, 2024
Merged
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
2 changes: 1 addition & 1 deletion scripts/00-gamescope/displays/asus.rogally.lcd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ gamescope.config.known_displays.rogally_lcd = {
-- ROG Ally + ROG Ally X.
matches = function(display)
if display.vendor == "TMX" and display.model == "TL070FVXS01-0" and display.product == 0x0002 then
debug("[rogally_lcd] Matched vendor: "..value.vendor.." model: "..value.model.." product:"..value.product)
debug("[rogally_lcd] Matched vendor: "..display.vendor.." model: "..display.model.." product:"..display.product)
return 5000
end
return -1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ gamescope.config.known_displays.steamdeck_deckhd_lcd = {
end,
matches = function(display)
if display.vendor == "DHD" and display.model == "DeckHD-1200p" and display.product == 0x4001 then
debug("[steamdeck_deckhd_lcd] Matched vendor: "..value.vendor.." model: "..value.model.." product:"..value.product)
debug("[steamdeck_deckhd_lcd] Matched vendor: "..display.vendor.." model: "..display.model.." product:"..display.product)
return 5000
end

Expand Down