diff --git a/branches/ConsoleDataMigration_2-1-2_fix/sources/ConsoleRestore/Importer.cpp b/branches/ConsoleDataMigration_2-1-2_fix/sources/ConsoleRestore/Importer.cpp index 14aad58..fbcff34 100644 --- a/branches/ConsoleDataMigration_2-1-2_fix/sources/ConsoleRestore/Importer.cpp +++ b/branches/ConsoleDataMigration_2-1-2_fix/sources/ConsoleRestore/Importer.cpp @@ -394,7 +394,7 @@ nn::Result ImportCountryLanguageData() nn::Result result = nn::ResultSuccess(); // 設定済みなら何もしない - if(nn::cfg::CTR::GetCountry() != nn::cfg::CTR::CFG_COUNTRY_UNKNOWN) + if(nn::cfg::CTR::GetCountry() != nn::cfg::CTR::CFG_COUNTRY_UNKNOWN && nn::cfg::CTR::GetCountry() != nn::cfg::CTR::CFG_COUNTRY_UNDEFINED) { return result; } diff --git a/branches/ConsoleDataMigration_2-1-2_fix/sources/common/version.h b/branches/ConsoleDataMigration_2-1-2_fix/sources/common/version.h index 0a8dbcd..7ba727d 100644 --- a/branches/ConsoleDataMigration_2-1-2_fix/sources/common/version.h +++ b/branches/ConsoleDataMigration_2-1-2_fix/sources/common/version.h @@ -18,6 +18,6 @@ #define CONSOLE_REPAIR_VERSION_MAJOR "2" #define CONSOLE_REPAIR_VERSION_MINOR "1" -#define CONSOLE_REPAIR_VERSION_MICRO "2" +#define CONSOLE_REPAIR_VERSION_MICRO "3" #endif /* VERSION_H_ */