Skip to content

Commit

Permalink
fix #8
Browse files Browse the repository at this point in the history
  • Loading branch information
sithlord48 committed Nov 4, 2017
1 parent 83e1152 commit baf7b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/FF7Save.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,7 @@ void FF7Save::setChocoCantMate(int s,int chocoSlot,bool cantMate)
setFileModified(true,s);
}
quint32 FF7Save::gil(int s){return slot[s].gil;}
void FF7Save::setGil(int s,int gil)
void FF7Save::setGil(int s,quint32 gil)
{
if(gil<0){gil =0;}
slot[s].gil = gil;
Expand Down
2 changes: 1 addition & 1 deletion data/FF7Save.h
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ class FF7Save: public QObject{
QString location(int s);// return save location string
void setLocation(int s, QString new_location);//set save location string to new_location
quint32 gil(int s);
void setGil(int s,int gil);
void setGil(int s,quint32 gil);
quint16 gp (int s);
void setGp(int s,int gp);
quint16 battles (int s);
Expand Down

0 comments on commit baf7b78

Please sign in to comment.