- Fixed compile errors in the other targets. - Added three test save files: one with a party not in a scenario, one with a party who has just entered Valley of Dying things, and one with the same party just after leaving town. - Added the new menu file for the game that I'm working on (not yet used) git-svn-id: http://openexile.googlecode.com/svn/trunk@53 4ebdad44-0ea0-11de-aab3-ff745001d230
41 lines
577 B
C++
41 lines
577 B
C++
/*
|
|
* special.cpp
|
|
* BoE
|
|
*
|
|
* Created by Celtic Minstrel on 20/04/09.
|
|
*
|
|
*/
|
|
|
|
#include "classes.h"
|
|
#include "oldstructs.h"
|
|
|
|
cSpecial::cSpecial(){
|
|
type = 0;
|
|
sd1 = -1;
|
|
sd2 = -1;
|
|
pic = -1;
|
|
m1 = -1;
|
|
m2 = -1;
|
|
ex1a = -1;
|
|
ex1b = -1;
|
|
ex2a = -1;
|
|
ex2b = -1;
|
|
jumpto = -1;
|
|
}
|
|
|
|
__attribute__((deprecated))
|
|
cSpecial& cSpecial::operator = (legacy::special_node_type& old){
|
|
type = old.type;
|
|
sd1 = old.sd1;
|
|
sd2 = old.sd2;
|
|
pic = old.pic;
|
|
m1 = old.m1;
|
|
m2 = old.m2;
|
|
ex1a = old.ex1a;
|
|
ex1b = old.ex1b;
|
|
ex2a = old.ex2a;
|
|
ex2b = old.ex2b;
|
|
jumpto = old.jumpto;
|
|
return *this;
|
|
}
|