diff --git a/trunk/ConsoleDataMigration/sources/common/DrawSystemState.cpp b/trunk/ConsoleDataMigration/sources/common/DrawSystemState.cpp index 8256841..62d0a6a 100644 --- a/trunk/ConsoleDataMigration/sources/common/DrawSystemState.cpp +++ b/trunk/ConsoleDataMigration/sources/common/DrawSystemState.cpp @@ -169,8 +169,8 @@ void DrawSystemState renderSystem.SetFontSize(fontwidth); // ツール名、ハイライト - renderSystem.DrawText(0, line++ * fontheight, "%s %s-%s", toolName, CONSOLE_REPAIR_VERSION_MAJOR, - CONSOLE_REPAIR_VERSION_MINOR); + renderSystem.DrawText(0, line++ * fontheight, "%s %s-%s-%s", toolName, CONSOLE_REPAIR_VERSION_MAJOR, + CONSOLE_REPAIR_VERSION_MINOR, CONSOLE_REPAIR_VERSION_MICRO); renderSystem.SetColor(titleColor.r, titleColor.g, titleColor.b); renderSystem.FillRectangle(0, (line - 1) * fontheight, 400, fontheight); renderSystem.SetColor(1.f, 1.f, 1.f); diff --git a/trunk/ConsoleDataMigration/sources/common/version.h b/trunk/ConsoleDataMigration/sources/common/version.h index be8f302..2e2c72d 100644 --- a/trunk/ConsoleDataMigration/sources/common/version.h +++ b/trunk/ConsoleDataMigration/sources/common/version.h @@ -17,6 +17,7 @@ #define VERSION_H_ #define CONSOLE_REPAIR_VERSION_MAJOR "2" -#define CONSOLE_REPAIR_VERSION_MINOR "2" +#define CONSOLE_REPAIR_VERSION_MINOR "1" +#define CONSOLE_REPAIR_VERSION_MICRO "1" #endif /* VERSION_H_ */