From d41fc7d325117615559fc9172136bd721275bf3b Mon Sep 17 00:00:00 2001 From: Popov Evgeniy Alekseyevich Date: Tue, 5 Nov 2024 23:21:14 +0700 Subject: [PATCH] The source code was recompiled under Tiny C Compiler --- SndExtract.tgt | 240 ------------------------------------------------- SndExtract.wpj | 43 --------- compile.bat | 2 + readme.txt | 9 +- sndextract.c | 2 +- 5 files changed, 8 insertions(+), 288 deletions(-) delete mode 100644 SndExtract.tgt delete mode 100644 SndExtract.wpj create mode 100644 compile.bat diff --git a/SndExtract.tgt b/SndExtract.tgt deleted file mode 100644 index ead8997..0000000 --- a/SndExtract.tgt +++ /dev/null @@ -1,240 +0,0 @@ -42 -targetIdent -0 -MProject -1 -MComponent -0 -2 -WString -4 -NEXE -3 -WString -5 -nc2en -1 -0 -1 -4 -MCommand -0 -5 -MCommand -0 -6 -MItem -14 -SndExtract.exe -7 -WString -4 -NEXE -8 -WVList -4 -9 -MRState -10 -WString -7 -WINLINK -11 -WString -25 -?????No debug information -1 -1 -12 -MRState -13 -WString -7 -WINLINK -14 -WString -16 -?????WLINK_d_all -1 -0 -15 -MCState -16 -WString -7 -WINLINK -17 -WString -15 -?????WLINK_op_m -1 -0 -18 -MCState -19 -WString -7 -WINLINK -20 -WString -15 -?????WLINK_op_q -1 -0 -21 -WVList -1 -22 -ActionStates -23 -WString -5 -&Make -24 -WVList -0 --1 -1 -1 -0 -25 -WPickList -5 -26 -MItem -3 -*.c -27 -WString -4 -COBJ -28 -WVList -4 -29 -MRState -30 -WString -3 -WCC -31 -WString -11 -?????WCG_d0 -1 -1 -32 -MRState -33 -WString -3 -WCC -34 -WString -11 -?????WCG_d2 -1 -0 -35 -MRState -36 -WString -3 -WCC -37 -WString -11 -??2??WCG_3s -1 -1 -38 -MRState -39 -WString -3 -WCC -40 -WString -11 -??2??WCG_6r -1 -0 -41 -WVList -0 --1 -1 -1 -0 -42 -MItem -12 -sndextract.c -43 -WString -4 -COBJ -44 -WVList -0 -45 -WVList -0 -26 -1 -1 -0 -46 -MItem -3 -*.h -47 -WString -3 -NIL -48 -WVList -0 -49 -WVList -0 --1 -1 -1 -0 -50 -MItem -8 -format.h -51 -WString -3 -NIL -52 -WVList -0 -53 -WVList -0 -46 -1 -1 -0 -54 -MItem -12 -sndextract.h -55 -WString -3 -NIL -56 -WVList -0 -57 -WVList -0 -46 -1 -1 -0 diff --git a/SndExtract.wpj b/SndExtract.wpj deleted file mode 100644 index eda8f9a..0000000 --- a/SndExtract.wpj +++ /dev/null @@ -1,43 +0,0 @@ -42 -projectIdent -0 -VpeMain -1 -WRect -0 -0 -7661 -9200 -2 -MProject -3 -MCommand -0 -4 -MCommand -0 -1 -5 -WFileName -14 -SndExtract.tgt -6 -WVList -1 -7 -VComponent -8 -WRect -0 -0 -5614 -4080 -0 -0 -9 -WFileName -14 -SndExtract.tgt -0 -0 -7 diff --git a/compile.bat b/compile.bat new file mode 100644 index 0000000..9d3bf91 --- /dev/null +++ b/compile.bat @@ -0,0 +1,2 @@ +@echo off +C:\tcc\tcc.exe sndextract.c \ No newline at end of file diff --git a/readme.txt b/readme.txt index 7c79823..8ff3919 100644 --- a/readme.txt +++ b/readme.txt @@ -2,12 +2,12 @@ Mugen sound extractor by Popov Evgeniy Alekseyevich - Version 2.5.6.2 + Version 2.5.7 System requirements -68 kilobytes of free space on storage media. +36 kilobytes of free space on storage media. Description and usage @@ -29,7 +29,7 @@ This program is distributed under GNU GENERAL PUBLIC LICENSE. Source code -The code was compiled under Open Watcom. +The code was compiled under Tiny C Compiler. But you can do it with any modern C compiler. The source code can be compiled for a wide range of operating systems, but you need to create a makefile or a build script by yourself. I provide only two things: the binary file for Windows and the makefile for Linux. @@ -67,4 +67,5 @@ Version history 2.5.5: Visual C++ support has improved. 2.5.5.1: The documentation has been updated. 2.5.6: The small changes. -2.5.6.1-2.5.6.2: The documentation has been updated. \ No newline at end of file +2.5.6.1-2.5.6.2: The documentation has been updated. +2.5.7: The source code was recompiled under Tiny C Compiler. \ No newline at end of file diff --git a/sndextract.c b/sndextract.c index c1d27cc..0ef4129 100644 --- a/sndextract.c +++ b/sndextract.c @@ -42,7 +42,7 @@ void show_intro() { putchar('\n'); puts("SND EXTRACT"); - puts("Version 2.5.6"); + puts("Version 2.5.7"); puts("Mugen sound extractor by Popov Evgeniy Alekseyevich, 2008-2024 years"); puts("This program is distributed under GNU GENERAL PUBLIC LICENSE"); }