diff options
| author | Jonas Ask | 2009-10-28 03:11:34 +0000 |
|---|---|---|
| committer | Jonas Ask | 2009-10-28 03:11:34 +0000 |
| commit | b08794ffb56a5ceea19960798708b80658f6e5d3 (patch) | |
| tree | 853f000be3c8c321562c2ad04050c8220674fd87 /Config.cpp | |
| parent | 583d6596ddee3ccd4e2a757e37b506a6f3e74cf2 (diff) | |
| download | stonesense-b08794ffb56a5ceea19960798708b80658f6e5d3.tar.gz stonesense-b08794ffb56a5ceea19960798708b80658f6e5d3.tar.bz2 stonesense-b08794ffb56a5ceea19960798708b80658f6e5d3.tar.xz | |
Added an option for filling the screen with tiles.
Diffstat (limited to 'Config.cpp')
| -rw-r--r-- | Config.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -92,6 +92,10 @@ void parseConfigLine( string line ){ string result = parseStrFromLine( "DEBUGMODE", line );
config.debug_mode = (result == "YES");
}
+ if( line.find("LIFTSEGMENT") != -1){
+ string result = parseStrFromLine( "LIFTSEGMENT", line );
+ config.lift_segment_offscreen = (result == "YES");
+ }
}
|
