Moved the config back to root folder.
Didn't make sense to have a single config to be in its own directory. Signed-off-by: Daniel Marsee <rdmarsee@gmail.com>
This commit is contained in:
parent
2ac90a8bd2
commit
9d0ae3bfe8
1 changed files with 5 additions and 5 deletions
10
electric.bas
10
electric.bas
|
@ -1,8 +1,8 @@
|
||||||
CONST versionvrsn = "v1.1:0002-indev" 'Update this each build!
|
CONST versionvrsn = "v1.1:0003-indev" 'Update this each build!
|
||||||
|
|
||||||
_TITLE "Electric"
|
_TITLE "Electric"
|
||||||
DIM SHARED ignore`, ignorethrot`, swidth, sheight, xoffset%, yoffset%, graphsetting, gamepad, screenanchorx%, screenanchory%
|
DIM SHARED ignore`, ignorethrot`, swidth, sheight, xoffset%, yoffset%, graphsetting, gamepad, screenanchorx%, screenanchory%
|
||||||
OPEN "cfg\electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
OPEN "electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
||||||
GET #1, 1, swidth
|
GET #1, 1, swidth
|
||||||
GET #1, 2, sheight
|
GET #1, 2, sheight
|
||||||
GET #1, 3, fs
|
GET #1, 3, fs
|
||||||
|
@ -179,7 +179,7 @@ DO
|
||||||
END IF
|
END IF
|
||||||
IF menu(5) THEN
|
IF menu(5) THEN
|
||||||
options
|
options
|
||||||
OPEN "cfg\electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
OPEN "electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
||||||
GET #1, 19, vol
|
GET #1, 19, vol
|
||||||
CLOSE #1
|
CLOSE #1
|
||||||
IF menumusic& THEN _SNDVOL menumusic&, vol
|
IF menumusic& THEN _SNDVOL menumusic&, vol
|
||||||
|
@ -1277,7 +1277,7 @@ tooltips&(1) = _LOADIMAGE("aimer_tooltip.png")
|
||||||
tooltips&(2) = _LOADIMAGE("energy_armor_tooltip.png")
|
tooltips&(2) = _LOADIMAGE("energy_armor_tooltip.png")
|
||||||
tooltips&(3) = _LOADIMAGE("srb_tooltip.png")
|
tooltips&(3) = _LOADIMAGE("srb_tooltip.png")
|
||||||
tooltips&(4) = _LOADIMAGE("flare_tooltip.png")
|
tooltips&(4) = _LOADIMAGE("flare_tooltip.png")
|
||||||
OPEN "cfg\electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
OPEN "electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
||||||
GET #1, 5, red
|
GET #1, 5, red
|
||||||
GET #1, 6, green
|
GET #1, 6, green
|
||||||
GET #1, 7, blue
|
GET #1, 7, blue
|
||||||
|
@ -1712,7 +1712,7 @@ END SUB
|
||||||
|
|
||||||
SUB options 'The options menu
|
SUB options 'The options menu
|
||||||
DIM steering AS control, throttle AS control, primary AS control, secondary AS control, scrdown AS control, scrup AS control, pick AS control
|
DIM steering AS control, throttle AS control, primary AS control, secondary AS control, scrdown AS control, scrup AS control, pick AS control
|
||||||
OPEN "cfg\electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
OPEN "electricsettings.cfg" FOR RANDOM AS #1 LEN = LEN(swidth)
|
||||||
GET #1, 1, swidth
|
GET #1, 1, swidth
|
||||||
GET #1, 2, sheight
|
GET #1, 2, sheight
|
||||||
GET #1, 3, fs
|
GET #1, 3, fs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue