1
0
mirror of synced 2024-11-24 07:00:15 +01:00
This commit is contained in:
BroGamer 2022-09-03 02:17:16 +12:00
parent 91d174c827
commit 3576c04073

View File

@ -194,8 +194,8 @@ i32 __stdcall DllMain (HMODULE mod, DWORD cause, void *ctx) {
i64 chipId2Int = readConfigInt (config, "chipId2", 2); i64 chipId2Int = readConfigInt (config, "chipId2", 2);
sprintf (accessCode1, "%020lld", accessCode1Int); sprintf (accessCode1, "%020lld", accessCode1Int);
sprintf (accessCode2, "%020lld", accessCode2Int); sprintf (accessCode2, "%020lld", accessCode2Int);
sprintf (chipId1, "%032llx", chipId1Int); sprintf (chipId1, "%032llX", chipId1Int);
sprintf (chipId2, "%032llx", chipId2Int); sprintf (chipId2, "%032llX", chipId2Int);
toml_free (config); toml_free (config);
} }