Skip to content

Commit 588096b

Browse files
author
hhhikr
committed
small test for a linux fix
1 parent ab1cbba commit 588096b

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

ProTrekkr.ncb

0 Bytes
Binary file not shown.

ProTrekkr.opt

-2 KB
Binary file not shown.

release/distrib/history.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ v2.5.4:
66

77
- Fixed 2 issues with interpolate command: it wouldn't work on all effects
88
and the whole commmand column is now properly filled with the first value.
9-
- Input was partly disabled when caps lock was turned on.
10-
- Right mouse button on pattern lines will now increase/decrease value by 8.
9+
- Input was partially disabled when caps lock was turned on.
10+
- Using right mouse button on "pattern lines" arrows
11+
will now increase/decrease value by 8.
1112
- F5 to F9 keys now jumps to 0, 1/4, 2/4, 3/4, 4/4 of the patterns lines.
12-
- Per request, I changed the way the number of patterns is calculated
13-
when saving a song, the tracker now looks for any used (scratch) patterns
13+
- Changed the way the number of patterns is calculated when saving a song,
14+
the tracker now looks for any used (scratch) patterns
1415
and save them within the .ptk module.
1516
- Fixed an issue in digibooster import function which was due
1617
to a MSVC compiler quirk.

release/distrib/replay/lib/replay.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -2425,6 +2425,15 @@ void Post_Song_Init(void)
24252425
Songplaying_Pattern = 0;
24262426
AUDIO_ResetTimer();
24272427
Delay_Sound_Buffer = 0;
2428+
for(i = 0; i < 256; i++)
2429+
{
2430+
Delays_Pos_Sound_Buffer[i].Line = 0;
2431+
Delays_Pos_Sound_Buffer[i].Pos = 0;
2432+
Delays_Pos_Sound_Buffer[i].SamplesPerTick = 0;
2433+
#if defined(PTK_SHUFFLE)
2434+
Delays_Pos_Sound_Buffer[i].shufflestep = 0;
2435+
#endif
2436+
}
24282437
}
24292438

24302439
// ------------------------------------------------------

src/plugin/plugin.ncb

0 Bytes
Binary file not shown.

src/plugin/plugin.opt

0 Bytes
Binary file not shown.

src/plugin/plugin.plg

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
--------------------Configuration: plugin - Win32 Release--------------------
77
</h3>
88
<h3>Command Lines</h3>
9-
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEE.tmp" with contents
9+
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19A.tmp" with contents
1010
[
1111
/nologo /MT /W3 /GX /O2 /D "__WIN32__" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "PLUGIN_EXPORTS" /D "__WINAMP__" /D "__STAND_ALONE__" /Fp"Release/plugin.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c
1212
"C:\Src\Pc\ptk\src\files\303s.cpp"
@@ -23,8 +23,8 @@ Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEE.tmp" with conten
2323
"C:\Src\Pc\ptk\release\distrib\replay\lib\tb_303.cpp"
2424
"C:\Src\Pc\ptk\release\distrib\replay\lib\wavpack.cpp"
2525
]
26-
Creating command line "cl.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEE.tmp"
27-
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEF.tmp" with contents
26+
Creating command line "cl.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19A.tmp"
27+
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19B.tmp" with contents
2828
[
2929
kernel32.lib user32.lib ../../zlib.lib msvcrt.lib msacm32.lib dsound.lib /nologo /dll /incremental:no /pdb:"Release/in_ptk.pdb" /machine:I386 /out:"Distrib\in_ptk.dll" /implib:"Release/in_ptk.lib"
3030
.\Release\303s.obj
@@ -41,7 +41,7 @@ kernel32.lib user32.lib ../../zlib.lib msvcrt.lib msacm32.lib dsound.lib /nologo
4141
.\Release\tb_303.obj
4242
.\Release\wavpack.obj
4343
]
44-
Creating command line "link.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEF.tmp"
44+
Creating command line "link.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19B.tmp"
4545
<h3>Output Window</h3>
4646
Compiling...
4747
303s.cpp

0 commit comments

Comments
 (0)