mirror of
https://github.com/brain-hackers/version-txt-dumper.git
synced 2025-07-05 19:14:20 +09:00
Compare commits
No commits in common. "main" and "1.0.0" have entirely different histories.
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
VERSION_MAJOR=1
|
VERSION_MAJOR=1
|
||||||
VERSION_MINOR=1
|
VERSION_MINOR=0
|
||||||
VERSION_PATCH=0
|
VERSION_PATCH=0
|
||||||
|
|
||||||
PREFIX?=/opt/cegcc
|
PREFIX?=/opt/cegcc
|
||||||
|
8
main.cpp
8
main.cpp
@ -53,12 +53,8 @@ int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPTSTR lpCmd, int nShow)
|
|||||||
file = CreateFile(L"\\Storage Card\\version.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
file = CreateFile(L"\\Storage Card\\version.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
||||||
if (file == INVALID_HANDLE_VALUE)
|
if (file == INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
file = CreateFile(L"\\NAND3\\version.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
MessageBox(NULL, L"Failed to create \\Storage Card\\version.txt", L"(X_X) < OMG", MB_ICONWARNING);
|
||||||
if (file == INVALID_HANDLE_VALUE)
|
return 1;
|
||||||
{
|
|
||||||
MessageBox(NULL, L"Failed to create \\Storage Card\\version.txt and \\NAND3\\version.txt", L"(X_X) < OMG", MB_ICONWARNING);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!WriteFile(file, buf, fileSize, NULL, NULL))
|
if (!WriteFile(file, buf, fileSize, NULL, NULL))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user