diff options
| author | Jonas Ask | 2009-12-15 18:58:12 +0000 |
|---|---|---|
| committer | Jonas Ask | 2009-12-15 18:58:12 +0000 |
| commit | efe183195555d091076e98678a530cee49d250a3 (patch) | |
| tree | b3ada799a9f795e5aa1061af21c6e570aad5c193 /Config.cpp | |
| parent | 9b62f29c5e9333c3d8ceefc9eb08fe52a422e329 (diff) | |
| download | stonesense-efe183195555d091076e98678a530cee49d250a3.tar.gz stonesense-efe183195555d091076e98678a530cee49d250a3.tar.bz2 stonesense-efe183195555d091076e98678a530cee49d250a3.tar.xz | |
Changed the zoom method on splash logo (to closest pixel).
Changed intro screen to a config option.
Prepping init file for launch.
Diffstat (limited to 'Config.cpp')
| -rw-r--r-- | Config.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -127,6 +127,10 @@ void parseConfigLine( string line ){ string result = parseStrFromLine( "SHOW_OSD", line );
config.show_osd = (result == "YES");
}
+ if( line.find("INTRO") != -1){
+ string result = parseStrFromLine( "INTRO", line );
+ config.show_intro = !(result == "OFF");
+ }
}
|
