Skip to content

Commit

Permalink
fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
stohrendorf committed Oct 8, 2013
1 parent 3e86319 commit 202981f
Show file tree
Hide file tree
Showing 131 changed files with 151 additions and 152 deletions.
20 changes: 10 additions & 10 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ if(MINGW)
set(CMAKE_RC_COMPILER_INIT windres)
ENABLE_LANGUAGE(RC)
SET(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> <FLAGS> <DEFINES> -O coff -o <OBJECT> <SOURCE>")
PROJECT(PeePeePlayer CXX C RC)
PROJECT(PPPlay CXX C RC)
if(CMAKE_SIZEOF_VOID_P MATCHES "8")
add_definitions(-DBOOST_USE_WINDOWS_H)
endif()
else()
PROJECT(PeePeePlayer CXX C)
PROJECT(PPPlay CXX C)
endif(MINGW)

if(WIN32)
Expand Down Expand Up @@ -77,7 +77,7 @@ set(LOCAL_LIBEXEC ${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_LIBEXECDIR})
#########
# configure CPACK
#########
SET(CPACK_PACKAGE_NAME "PeePeePlayer")
SET(CPACK_PACKAGE_NAME "PPPlay")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Retro-style module player")
SET(CPACK_PACKAGE_VENDOR "Steffen Ohrendorf <steffen.ohrendorf@gmx.de>")
# SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/ReadMe.txt")
Expand All @@ -90,7 +90,7 @@ SET(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME} ${CPACK_PACKAGE_VERSI
SET(CPACK_STRIP_FILES TRUE)
SET(CPACK_SOURCE_STRIP_FILES "")
SET(CPACK_SOURCE_IGNORE_FILES "/\\\\..;/build/;.~$;.\\\\.kdev4;Doxyfile$;config\\\\.h$")
SET(CPACK_PACKAGE_EXECUTABLES "ppplay" "PeePeePlayer")
SET(CPACK_PACKAGE_EXECUTABLES "ppplay" "PPPlay")
SET(CPACK_MONOLITHIC_INSTALL TRUE)
# SET(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CMAKE_SYSTEM_PROCESSOR}")
# SET(CPACK_PACKAGE_SOURCE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-src")
Expand All @@ -102,7 +102,7 @@ if(LINUX OR UNIX)
SET(CPACK_RPM_PACKAGE_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR})
SET(CPACK_RPM_PACKAGE_GROUP "Productivity/Multimedia/Sound/Players")
SET(CPACK_RPM_PACKAGE_DESCRIPTION
"PeePeePlayer aims to be an \\\"original\\\" sounding, DOS-like looking Music Tracker Modules player.
"PPPlay aims to be an \\\"original\\\" sounding, DOS-like looking Music Tracker Modules player.
Authors:
--------
Expand Down Expand Up @@ -254,16 +254,16 @@ add_subdirectory(src)
# set install command
#########
install(TARGETS ppplay DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT application)
cpack_add_component(application DISPLAY_NAME PeePeePlayer REQUIRED)
cpack_add_component(application DISPLAY_NAME PPPlay REQUIRED)
if(LINUX OR UNIX)
install(CODE "
message(STATUS \"Installing: HSC XDG Mime Handler\")
execute_process( COMMAND xdg-mime install peepeeplayer-hsc.xml WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data )
message(STATUS \"Installing: PeePeePlayer XDG Desktop file\")
execute_process( COMMAND xdg-desktop-menu install --novendor peepeeplayer.desktop WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} )
execute_process( COMMAND xdg-mime install ppplay-hsc.xml WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data )
message(STATUS \"Installing: PPPlay XDG Desktop file\")
execute_process( COMMAND xdg-desktop-menu install --novendor ppplay.desktop WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} )
")
endif()
install(EXPORT ppplayExports DESTINATION ${CMAKE_INSTALL_LIBEXECDIR} FILE peepeeplayer.cmake COMPONENT Devel)
install(EXPORT ppplayExports DESTINATION ${CMAKE_INSTALL_LIBEXECDIR} FILE ppplay.cmake COMPONENT Devel)
cpack_add_component(Devel DISPLAY_NAME "Development files" OPTIONAL)

#########
Expand Down
7 changes: 3 additions & 4 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ and some things can be wrong. So if you consider a problem,
please contact me via e-mail: <steffen.ohrendorf@gmx.de>

== PREREQUISITES ==
- boost libraries and headers (system, thread, format, exception)
- boost libraries and headers (system, format, exception)
- cmake 2.8+
- SDL libraries and headers
- libmp3lame
- gcc/g++ 4.6+
- gcc/g++ 4.8+
- doxygen and graphviz if you want to build the docs

== CMAKE BUILD ==
- 'cd' to the source root where ppp.cpp is located
- 'cd' to the source root where ppplay.cpp is located
- 'mkdir build'
- 'cd build'
- 'cmake -G "Unix Makefiles" ..'
Expand Down
6 changes: 3 additions & 3 deletions pack-src.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

COMMIT=${1:-HEAD}
VERSION=`git describe $COMMIT`
git archive --prefix="peepeeplayer-$VERSION/" --format=tar -v $COMMIT | bzip2 --best -z > "peepeeplayer-$VERSION.tar.bz2"
git archive --prefix="peepeeplayer-$VERSION/" --format=tar.gz -v $COMMIT > "peepeeplayer-$VERSION.tar.gz"
git archive --prefix="peepeeplayer-$VERSION/" --format=zip -v $COMMIT > "peepeeplayer-$VERSION.zip"
git archive --prefix="ppplay-$VERSION/" --format=tar -v $COMMIT | bzip2 --best -z > "ppplay-$VERSION.tar.bz2"
git archive --prefix="ppplay-$VERSION/" --format=tar.gz -v $COMMIT > "ppplay-$VERSION.tar.gz"
git archive --prefix="ppplay-$VERSION/" --format=zip -v $COMMIT > "ppplay-$VERSION.zip"
16 changes: 8 additions & 8 deletions ppplay.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -219,8 +219,8 @@ bool parseCmdLine( int argc, char* argv[] )
return false;
}
if( vm.count( "help" ) || !vm.count( "file" ) ) {
cout << "Usage: ppp [options] <file>" << endl;
cout << PACKAGE_STRING << ", Copyright (C) 2010 by " << PACKAGE_VENDOR << endl;
cout << "Usage: ppplay [options] <file>" << endl;
cout << PACKAGE_STRING << ", Copyright (C) 2010-2013 by " << PACKAGE_VENDOR << endl;
cout << PACKAGE_NAME << " comes with ABSOLUTELY NO WARRANTY; for details type `ppp --warranty'." << endl;
cout << "This is free software, and you are welcome to redistribute it" << endl;
cout << "under certain conditions; type `ppp --copyright' for details." << endl;
Expand Down Expand Up @@ -252,9 +252,9 @@ bool parseCmdLine( int argc, char* argv[] )
void terminateHandler()
{
std::cerr << "Unexpected exception: " << boost::current_exception_diagnostic_information() << std::endl;
std::cerr << "The message above means that PeePeePlayer encountered a problem which was so\n"
std::cerr << "The message above means that PPPlay encountered a problem which was so\n"
<< "unexpected that, despite all taken care, caused it to die a sudden death.\n"
<< "To help PeePeePlayer learn to handle this problem, please submit a bug report to:\n"
<< "To help PPPlay learn to handle this problem, please submit a bug report to:\n"
<< " http://sourceforge.net/p/peepeeplayer/tickets/\n"
<< "If possible, please add the file you tried to play and the message above,\n"
<< "so the authors can examine and hopefully solve the mystery. Thank you!"
Expand Down Expand Up @@ -284,7 +284,7 @@ int main( int argc, char* argv[] )
catch( ... ) {
light4cxx::Logger::root()->fatal( L4CXX_LOCATION, "Exception on module loading: %s", boost::current_exception_diagnostic_information() );
std::cout << std::flush;
std::cerr << "The message above means that PeePeePlayer encountered a severe problem it\n"
std::cerr << "The message above means that PPPlay encountered a severe problem it\n"
<< "could not handle gracefully. Please report this problem to the developers at:\n"
<< " http://sourceforge.net/p/peepeeplayer/tickets/\n"
<< "If possible, please add the file you tried to play, as this seems to be the\n"
Expand Down Expand Up @@ -474,9 +474,9 @@ int main( int argc, char* argv[] )
catch( ... ) {
light4cxx::Logger::root()->fatal( L4CXX_LOCATION, stringFmt( "Main (end): %s", boost::current_exception_diagnostic_information() ) );
std::cout << std::flush;
std::cerr << "The message above means that PeePeePlayer encountered a problem which\n"
std::cerr << "The message above means that PPPlay encountered a problem which\n"
<< "was so terrible that, despite all taken care, caused it to die.\n"
<< "To help PeePeePlayer learn to handle this problem, please submit\n"
<< "To help PPPlay learn to handle this problem, please submit\n"
<< "a bug report to:\n"
<< " http://sourceforge.net/p/peepeeplayer/tickets/\n"
<< "If possible, please add the file you tried to play and the message above,\n"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/genmod/abstractmodule.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/abstractmodule.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/abstractorder.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/abstractorder.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/breseninter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/genbase.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/genbase.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/ipatterncell.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/ipatterncell.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/modulestate.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2012 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/modulestate.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2012 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/sample.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/sample.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/genmod/songinfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2012 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/light4cxx/level.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/light4cxx/location.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/light4cxx/location.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/light4cxx/logger.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/light4cxx/logger.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modbase.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modbase.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modcell.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modcell.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modchannel.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modchannel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modmodule.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modpattern.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modsample.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/modmod/modsample.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2011 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/abstractaudiooutput.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/abstractaudiooutput.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/abstractaudiosource.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/abstractaudiosource.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/audiofifo.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/audiofifo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/output/audiotypes.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
PeePeePlayer - an old-fashioned module player
PPPlay - an old-fashioned module player
Copyright (C) 2010 Steffen Ohrendorf <steffen.ohrendorf@gmx.de>
This program is free software: you can redistribute it and/or modify
Expand Down
Loading

0 comments on commit 202981f

Please sign in to comment.