mirror of
				https://github.com/brain-hackers/version-txt-dumper.git
				synced 2025-10-30 03:58:41 +09:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | d4f13bc628 | ||
|   | d87c204701 | ||
|   | 841a4d41fa | 
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| VERSION_MAJOR=1 | ||||
| VERSION_MINOR=0 | ||||
| VERSION_MINOR=1 | ||||
| VERSION_PATCH=0 | ||||
|  | ||||
| PREFIX?=/opt/cegcc | ||||
|   | ||||
							
								
								
									
										8
									
								
								main.cpp
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								main.cpp
									
									
									
									
									
								
							| @@ -53,8 +53,12 @@ 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); | ||||
|     if (file == INVALID_HANDLE_VALUE) | ||||
|     { | ||||
|         MessageBox(NULL, L"Failed to create \\Storage Card\\version.txt", L"(X_X) < OMG", MB_ICONWARNING); | ||||
|         return 1; | ||||
|         file = CreateFile(L"\\NAND3\\version.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); | ||||
|         if (file == INVALID_HANDLE_VALUE) | ||||
|         { | ||||
|             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)) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user