Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
small test for a linux fix
  • Loading branch information
hhhikr committed Jul 12, 2011
1 parent ab1cbba commit 588096b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
Binary file modified ProTrekkr.ncb
Binary file not shown.
Binary file modified ProTrekkr.opt
Binary file not shown.
9 changes: 5 additions & 4 deletions release/distrib/history.txt
Expand Up @@ -6,11 +6,12 @@ v2.5.4:

- Fixed 2 issues with interpolate command: it wouldn't work on all effects
and the whole commmand column is now properly filled with the first value.
- Input was partly disabled when caps lock was turned on.
- Right mouse button on pattern lines will now increase/decrease value by 8.
- Input was partially disabled when caps lock was turned on.
- Using right mouse button on "pattern lines" arrows
will now increase/decrease value by 8.
- F5 to F9 keys now jumps to 0, 1/4, 2/4, 3/4, 4/4 of the patterns lines.
- Per request, I changed the way the number of patterns is calculated
when saving a song, the tracker now looks for any used (scratch) patterns
- Changed the way the number of patterns is calculated when saving a song,
the tracker now looks for any used (scratch) patterns
and save them within the .ptk module.
- Fixed an issue in digibooster import function which was due
to a MSVC compiler quirk.
Expand Down
9 changes: 9 additions & 0 deletions release/distrib/replay/lib/replay.cpp
Expand Up @@ -2425,6 +2425,15 @@ void Post_Song_Init(void)
Songplaying_Pattern = 0;
AUDIO_ResetTimer();
Delay_Sound_Buffer = 0;
for(i = 0; i < 256; i++)
{
Delays_Pos_Sound_Buffer[i].Line = 0;
Delays_Pos_Sound_Buffer[i].Pos = 0;
Delays_Pos_Sound_Buffer[i].SamplesPerTick = 0;
#if defined(PTK_SHUFFLE)
Delays_Pos_Sound_Buffer[i].shufflestep = 0;
#endif
}
}

// ------------------------------------------------------
Expand Down
Binary file modified src/plugin/plugin.ncb
Binary file not shown.
Binary file modified src/plugin/plugin.opt
Binary file not shown.
8 changes: 4 additions & 4 deletions src/plugin/plugin.plg
Expand Up @@ -6,7 +6,7 @@
--------------------Configuration: plugin - Win32 Release--------------------
</h3>
<h3>Command Lines</h3>
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEE.tmp" with contents
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19A.tmp" with contents
[
/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
"C:\Src\Pc\ptk\src\files\303s.cpp"
Expand All @@ -23,8 +23,8 @@ Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEE.tmp" with conten
"C:\Src\Pc\ptk\release\distrib\replay\lib\tb_303.cpp"
"C:\Src\Pc\ptk\release\distrib\replay\lib\wavpack.cpp"
]
Creating command line "cl.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEE.tmp"
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEF.tmp" with contents
Creating command line "cl.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19A.tmp"
Creating temporary file "C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19B.tmp" with contents
[
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"
.\Release\303s.obj
Expand All @@ -41,7 +41,7 @@ kernel32.lib user32.lib ../../zlib.lib msvcrt.lib msacm32.lib dsound.lib /nologo
.\Release\tb_303.obj
.\Release\wavpack.obj
]
Creating command line "link.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSPEF.tmp"
Creating command line "link.exe @C:\DOCUME~1\franck\LOCALS~1\Temp\RSP19B.tmp"
<h3>Output Window</h3>
Compiling...
303s.cpp
Expand Down

0 comments on commit 588096b

Please sign in to comment.