Skip to content

Commit

Permalink
Version + comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pixicoder committed Oct 25, 2024
1 parent 5485219 commit 4535144
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/bin
2 changes: 1 addition & 1 deletion HOW_TO_MAKE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Execute one of the MAKE_* bash scripts in Linux/macOS Terminal.

Requirements:
make, gcc, MinGW (Windows), SDL2 lib
make, gcc, SDL2 lib
14 changes: 13 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
PsyTexx1 Player
by Alexander Zolotov <nightradio@gmail.com>
WarmPlace.ru
Changelog:
v1.2 (25 oct 2024): port to pure C, improvements, bugfixes;
old versions (2002 - 2006)...
*/

#define APP_VERSION "1.2"

#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
Expand Down Expand Up @@ -41,7 +53,7 @@ int main( int argc, char **argv )

signal( SIGINT, int_handler );
printf( "PsyTexx1 MOD Player by Alexander Zolotov / WarmPlace.ru\n" );
printf( "(build " __DATE__ "; " __TIME__ ")\n" );
printf( "(v" APP_VERSION "; build " __DATE__ "; " __TIME__ ")\n" );
char* name = NULL;
if( argc > 1 )
{
Expand Down
4 changes: 3 additions & 1 deletion psytexx_audio.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/*
PsyTexx simple audio output library
PsyTexx simple audio output library
by Alexander Zolotov <nightradio@gmail.com>
WarmPlace.ru
*/

#include <stdbool.h>
Expand Down
4 changes: 3 additions & 1 deletion psytexx_mod_engine.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/*
PsyTexx MOD player engine
PsyTexx MOD player engine
by Alexander Zolotov <nightradio@gmail.com>
WarmPlace.ru
*/

#include <stdbool.h>
Expand Down

0 comments on commit 4535144

Please sign in to comment.