summaryrefslogtreecommitdiff
path: root/rbutil/ipodpatcher/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/ipodpatcher/main.c')
-rw-r--r--rbutil/ipodpatcher/main.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/rbutil/ipodpatcher/main.c b/rbutil/ipodpatcher/main.c
index 412c8733f9..6ec05666ac 100644
--- a/rbutil/ipodpatcher/main.c
+++ b/rbutil/ipodpatcher/main.c
@@ -33,7 +33,7 @@
33 33
34#ifdef RELEASE 34#ifdef RELEASE
35#undef VERSION 35#undef VERSION
36#define VERSION "4.1 with v3.0 bootloaders (v1.0 for 2nd Gen Nano)" 36#define VERSION "4.0 with v3.0 bootloaders (v1.0 for 2nd Gen Nano)"
37#endif 37#endif
38 38
39 39
@@ -398,6 +398,15 @@ int main(int argc, char* argv[])
398 if (ipod.ramsize > 0) { printf("(%dMB RAM) ",ipod.ramsize); } 398 if (ipod.ramsize > 0) { printf("(%dMB RAM) ",ipod.ramsize); }
399 printf("(\"%s\")\n",ipod.macpod ? "macpod" : "winpod"); 399 printf("(\"%s\")\n",ipod.macpod ? "macpod" : "winpod");
400 400
401 if (ipod.ipod_directory[ipod.ososimage].vers == 0x10000) {
402 fprintf(stderr,"[ERR] *** ipodpatcher does not support the 2nd Generation Nano! ***\n");
403#ifdef WITH_BOOTOBJS
404 printf("Press ENTER to exit ipodpatcher :");
405 fgets(yesno,4,stdin);
406#endif
407 return 0;
408 }
409
401 if (ipod.macpod) { 410 if (ipod.macpod) {
402 print_macpod_warning(); 411 print_macpod_warning();
403 } 412 }