diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2007-06-02 18:12:48 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2007-06-02 18:12:48 +0000 |
| commit | c9afda3ab74614fb36986f96b7972c082f275eca (patch) | |
| tree | 1b7c0b31950597d6ed562d94158dd3f8701496da /pokemod/Point.cpp | |
| parent | f71140fae5218ee9839ffcd4ec83abfded5124f4 (diff) | |
| download | sigen-c9afda3ab74614fb36986f96b7972c082f275eca.tar.gz sigen-c9afda3ab74614fb36986f96b7972c082f275eca.tar.xz sigen-c9afda3ab74614fb36986f96b7972c082f275eca.zip | |
Finished off all PokeMod classes, added move validations, fixed up some GUI, various other fixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@18 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Point.cpp')
| -rw-r--r-- | pokemod/Point.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pokemod/Point.cpp b/pokemod/Point.cpp index 905babdd..c4e32859 100644 --- a/pokemod/Point.cpp +++ b/pokemod/Point.cpp @@ -28,17 +28,17 @@ void PokeGen::PokeMod::Point::ImportIni(Ini &ini) LogImportStart("Point");
ini.GetValue("x", x, 0);
ini.GetValue("y", y, 0);
- Log(String("Point Import: Imported (%d, %d)", x, y), PM_DEBUG_INFO);
+ Log(String("Point Import: Imported (%u, %u)", x, y), PM_DEBUG_INFO);
}
void PokeGen::PokeMod::Point::ExportIni(std::ofstream &fout, const String &val) const
{
- Log(String("Point Export: Starting (%d, %d) as %s", x, y, val.c_str()), PM_DEBUG_INFO);
+ Log(String("Point Export: Starting (%u, %u) as %s", x, y, val.c_str()), PM_DEBUG_INFO);
// Declare the elements
Ini exPoint(val);
exPoint.AddField("x", x);
exPoint.AddField("y", y);
exPoint.Export(fout);
- Log(String("Point Export: Finished (%d, %d) as %s", x, y, val.c_str()), PM_DEBUG_INFO);
+ Log(String("Point Export: Finished (%u, %u) as %s", x, y, val.c_str()), PM_DEBUG_INFO);
}
|
