aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-12 21:41:07 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-12 21:41:07 -0400
commit77a37a2f52fdfba1457acb93bc90ef792ae6f8fc (patch)
tree81644b9df2afe80c28e5a68b29b28c01a2744ec6 /src/main.cpp
parent930de7158b1d94b49334f33c915cd9e8712190ed (diff)
fixed layer jump
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 93f7da1..593e125 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -76,7 +76,7 @@ int main(int argc,char **argv){
// Generate the world
World *w=NULL,*w2=NULL;
w2=new World(4,w,NULL);
- w=new World(2,NULL,w2);
+ w=new World(10,NULL,w2);
currentWorld=w;
currentWorld->addLayer(3);