Skip to content

Commit

Permalink
Bump version number to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Orvid committed Jan 3, 2016
1 parent 8fc6317 commit aa91b5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Champollion/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bool getProgramOptions(int argc, char* argv[], Params& params)
params.papyrusDir = fs::path(".");


options::options_description desc("Champollion PEX decompiler V1.0.4");
options::options_description desc("Champollion PEX decompiler V1.0.5");
desc.add_options()
("help,h", "Display the help message")
("asm,a", options::value<std::string>()->implicit_value(""), "Output assembly file")
Expand Down
2 changes: 1 addition & 1 deletion Decompiler/PscCoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void Decompiler::PscCoder::writeHeader(const Pex::Binary &pex)
{
auto& header = pex.getHeader();
auto& debug = pex.getDebugInfo();
write(";/ Decompiled by Champollion V1.0.4");
write(";/ Decompiled by Champollion V1.0.5");
write(indent(0) << "PEX format v" << (int)header.getMajorVersion() << "." << (int)header.getMinorVersion() << " GameID: " << header.getGameID());
write(indent(0) << "Source : " << header.getSourceFileName());
if (debug.getModificationTime() != 0)
Expand Down

0 comments on commit aa91b5d

Please sign in to comment.