summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2a33d65..df5a563 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -7,8 +7,11 @@ int main()
Frame map("scripts/map.txt",0,0);
Frame view(map,s.getHeight(),s.getWidth(),0,0);
List L;
-
- Character cursor('X',3,map.getHeight()/2,map.getWidth()/2);
+
+ Location l;
+ l.x =150;
+ l.y =150;
+ Character cursor('X',3,l);
map.fillWindow();
L.draw(map.getWin());