Link to the actual source code for Organya.cpp and Sound.cpp

This commit is contained in:
Clownacy 2019-06-17 17:03:54 +00:00
parent 9ed788fbd9
commit 3039e3b846
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,9 @@
// Some of the original source code for this file can be found here:
// https://github.com/shbow/organya/blob/master/source/OrgFile.cpp
// https://github.com/shbow/organya/blob/master/source/OrgPlay.cpp
// https://github.com/shbow/organya/blob/master/source/Sound.cpp
// https://github.com/shbow/organya/blob/master/source/WinTimer.cpp
#include "Organya.h" #include "Organya.h"
#include <stddef.h> #include <stddef.h>
@ -104,7 +110,7 @@ OCTWAVE oct_wave[8] =
{ 64, 16, 20 }, // 4 Oct { 64, 16, 20 }, // 4 Oct
{ 32, 32, 24 }, // 5 Oct { 32, 32, 24 }, // 5 Oct
{ 16, 64, 28 }, // 6 Oct { 16, 64, 28 }, // 6 Oct
{ 8, 128, 32 }, // 7 Oct { 8,128, 32 }, // 7 Oct
}; };
BOOL MakeSoundObject8(signed char *wavep, signed char track, signed char pipi) BOOL MakeSoundObject8(signed char *wavep, signed char track, signed char pipi)

View file

@ -1,3 +1,6 @@
// Some of the original source code for this file can be found here:
// https://github.com/shbow/organya/blob/master/source/Sound.cpp
#include "Sound.h" #include "Sound.h"
#include <math.h> #include <math.h>