diff --git a/C++/Text Adventure Part1/Main.cpp b/C++/Text Adventure Part1/Main.cpp index 95c1c0e..0c39fa8 100644 --- a/C++/Text Adventure Part1/Main.cpp +++ b/C++/Text Adventure Part1/Main.cpp @@ -78,9 +78,9 @@ struct tRoom string strCurrentRoom; // This stores the name of the current room we are in (I.E. "Hallway") string strRoomDescription; // This holds the description of the current room string strRoomNorth; // This holds the name of the room that is to the north - string strRoomEast; // This holds the name of the room that is to the north - string strRoomSouth; // This holds the name of the room that is to the north - string strRoomWest; // This holds the name of the room that is to the north + string strRoomEast; // This holds the name of the room that is to the east + string strRoomSouth; // This holds the name of the room that is to the south + string strRoomWest; // This holds the name of the room that is to the west };