summaryrefslogtreecommitdiff
path: root/Config.cpp
diff options
context:
space:
mode:
authorJonas Ask2009-10-28 03:11:34 +0000
committerJonas Ask2009-10-28 03:11:34 +0000
commitb08794ffb56a5ceea19960798708b80658f6e5d3 (patch)
tree853f000be3c8c321562c2ad04050c8220674fd87 /Config.cpp
parent583d6596ddee3ccd4e2a757e37b506a6f3e74cf2 (diff)
downloadstonesense-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.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Config.cpp b/Config.cpp
index cde1c3f..4b0e6e6 100644
--- a/Config.cpp
+++ b/Config.cpp
@@ -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");
+ }
}