Set up a Visual Studio project and tweak things until it compiles

- It doesn't link yet, but that was expected
- Fixed some issues with global variables having different types in different files.
This commit is contained in:
2014-12-29 14:52:54 -05:00
parent fdb98bf34a
commit b11199d7d9
56 changed files with 1412 additions and 153 deletions

View File

@@ -30,7 +30,7 @@ extern cUniverse univ;
//extern long ed_flag,ed_key;
extern sf::RenderWindow mainPtr;
extern bool file_in_mem;
extern fs::path file_in_mem;
//extern long register_flag;
extern sf::Texture pc_gworld;
@@ -63,7 +63,7 @@ bool handle_action(sf::Event event) {
the_point = {event.mouseButton.x, event.mouseButton.y};
if(!file_in_mem)
if(file_in_mem.empty())
return false;
for(i = 0; i < 6; i++)