From 1ca33324c3fb5d57304321df076c48acf26e8b11 Mon Sep 17 00:00:00 2001 From: JackCarterSmith Date: Tue, 8 Sep 2020 20:01:09 +0200 Subject: [PATCH] Reupdate --- README.md | 18 ++++++++++-------- src/Texture-Extractor.c | 4 ++-- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 20269b4..0d5f69e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The collection consist of few independants modules, each of them deals with spec All modules are independants. This is the **'TEXTURE'** module. -**CAUTION! Master branch is hugely buggy and should not be used, please take only released versions.** +**CAUTION! Master branch is ugly for now and should not be used, please take only released versions.** ## TEXTURE MODULE @@ -22,7 +22,7 @@ This module can do: ### Using -`Texture-Extractor_"version" [options] ` +`RSE-Texture_"version" [options] ` or you can ### Options @@ -34,14 +34,16 @@ This module can do: Necessary libs for running (provided in release) and for compiling. -- zlib -- libpng (recommended: 1.6.37) +- zlib (1.2.11) +- libpng (1.6.37) ### Compiling -You can compile on both Windows or Linux system, you only need to adjust your dependencies. +You can compile on both Windows (MinGW) or native Linux system, you only need to adjust your dependencies. -zlib and libpng16 distrib package can be used. -To compile, just type on linux: +zlib and libpng16 distrib packages can be used. +To compile, just type on linux: `make` -`make` \ No newline at end of file +### TODO + +[ ] Cmake integration \ No newline at end of file diff --git a/src/Texture-Extractor.c b/src/Texture-Extractor.c index 3263801..2f30a81 100644 --- a/src/Texture-Extractor.c +++ b/src/Texture-Extractor.c @@ -17,7 +17,7 @@ int main(int argc, char *argv[]) { HMT_FILE *hmt_fdatas = NULL; int file_index; - printf("\n*** RogueSquadron Data Extractor - TEXTURE module - v%s ***\n", VERSION); + printf("\n*** RogueSquadron Extractor (RSE) - TEXTURE module - v%s ***\n", VERSION); // Check if filenames arguments exist if (argc < 2) { @@ -125,6 +125,6 @@ void dispHelp() { printf("\n"); printf("Options:\n -h Print this message\n -v Activate verbose console output\n -no-subdir Extract textures inside current folder\n"); printf("\n"); - printf("Usage: RogueRE-texture_%s [options] \n", VERSION); + printf("Usage: RSE-Texture_%s [options] \n", VERSION); printf("\n"); }