From e3fb9efbf7065194cbce590e687ad25016c1e803 Mon Sep 17 00:00:00 2001 From: gered Date: Thu, 25 Mar 2021 15:24:54 -0400 Subject: [PATCH] show more specific quest file format description --- quest_info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quest_info.c b/quest_info.c index b24525c..39b1306 100644 --- a/quest_info.c +++ b/quest_info.c @@ -129,9 +129,9 @@ void display_info(uint8_t *bin_data, size_t bin_length, uint8_t *dat_data, size_ printf("QUEST FILE FORMAT: "); switch (qst_type) { - case QST_TYPE_NONE: printf("raw .bin/.dat\n"); break; - case QST_TYPE_DOWNLOAD: printf("download/offline .qst (0x%02X)\n", PACKET_ID_QUEST_INFO_DOWNLOAD); break; - case QST_TYPE_ONLINE: printf("online .qst (0x%02X)\n", PACKET_ID_QUEST_INFO_ONLINE); break; + case QST_TYPE_NONE: printf("PRS-compressed .bin/.dat\n"); break; + case QST_TYPE_DOWNLOAD: printf("download/offline .qst with encrypted PRS-compressed .bin/.dat (0x%02X)\n", PACKET_ID_QUEST_INFO_DOWNLOAD); break; + case QST_TYPE_ONLINE: printf("online .qst with PRS-compressed .bin/.dat (0x%02X)\n", PACKET_ID_QUEST_INFO_ONLINE); break; default: printf("unknown\n"); } printf("\n");