mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-12-21 19:22:13 -08:00
Update processbuilder.js
This commit is contained in:
parent
f08bbcc3e0
commit
a314e51b1f
@ -474,18 +474,15 @@ class ProcessBuilder {
|
|||||||
if(rule.features.has_custom_resolution != null && rule.features.has_custom_resolution === true){
|
if(rule.features.has_custom_resolution != null && rule.features.has_custom_resolution === true){
|
||||||
if(ConfigManager.getFullscreen()){
|
if(ConfigManager.getFullscreen()){
|
||||||
logger.info("gamedir: ", this.gameDir)
|
logger.info("gamedir: ", this.gameDir)
|
||||||
|
WriteFullscreenToOptions(path.join(this.gameDir, "options.txt"), 'fullscreen:false', 'fullscreen:true')
|
||||||
const filePath = path.join(this.gameDir, "options.txt");
|
|
||||||
const lineToReplace = 'fullscreen:false';
|
|
||||||
const newLine = 'fullscreen:true';
|
|
||||||
|
|
||||||
WriteFullscreenToOptions(filePath, lineToReplace, newLine);
|
|
||||||
|
|
||||||
args[i].value = [
|
args[i].value = [
|
||||||
'--fullscreen',
|
'--fullscreen',
|
||||||
'true'
|
'true'
|
||||||
]
|
]
|
||||||
|
} else {
|
||||||
|
WriteFullscreenToOptions(path.join(this.gameDir, "options.txt"), 'fullscreen:true', 'fullscreen:false');
|
||||||
}
|
}
|
||||||
|
|
||||||
checksum++
|
checksum++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user