- Implemented new-style frill drawing using masking (untested)

- Re-implemented walkway drawing in the same way
- Tried to fix an STL error
- A few other thing, maybe?

git-svn-id: http://openexile.googlecode.com/svn/trunk@60 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
2009-05-18 11:16:46 +00:00
parent 88ff8a0886
commit bf1487114a
69 changed files with 751 additions and 545 deletions

View File

@@ -6,6 +6,12 @@
*
*/
#include <string>
#include <vector>
#include <map>
#include <sstream>
using namespace std;
#include "classes.h"
#include "boe.consts.h"
#include "oldstructs.h"
@@ -310,7 +316,7 @@ cItemRec& cItemRec::operator = (legacy::item_record_type& old){
special_class = old.special_class;
item_loc.x = old.item_loc.x;
item_loc.y = old.item_loc.y;
full_name = old.full_name;
full_name = string(old.full_name);
name = old.name;
treas_class = old.treas_class;
item_properties = old.item_properties;