1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 11:11:20 +00:00

Minor fix to error-checking routine for the new config file.

This commit is contained in:
SMcNeill 2015-07-15 11:41:44 -04:00
parent cfc5c90b73
commit f167d054b2
2 changed files with 4 additions and 3 deletions

View file

@ -138,7 +138,7 @@ IF LoadedIDESettings = 0 THEN
result = ReadConfigSetting("IDE_Height", value$)
idewy = VAL(value$)
IF idewx < 25 OR idewx > 1000 THEN idewx = 25: WriteConfigSetting "'[IDE DISPLAY SETTINGS]", "IDE_Height", "25"
IF idewy < 25 OR idewy > 1000 THEN idewy = 25: WriteConfigSetting "'[IDE DISPLAY SETTINGS]", "IDE_Height", "25"
result = ReadConfigSetting("IDE_AutoFormat", value$)
ideautolayout = VAL(value$)

File diff suppressed because one or more lines are too long