Skip to content

Commit

Permalink
ver 0.48 2017/05/18
Browse files Browse the repository at this point in the history
 xpcm.exeでの終端の取扱いを変更した。
  • Loading branch information
BouKiCHi committed May 18, 2017
1 parent 4b3fb28 commit 003aff7
Show file tree
Hide file tree
Showing 9 changed files with 144 additions and 198 deletions.
40 changes: 40 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "XPCM debug Launch",
"type": "cppdbg",
"request": "launch",
"miDebuggerPath": "c:\\msys64\\mingw32\\bin\\gdb.exe",
"program": "${workspaceRoot}\\bin\\xpcm.exe",
"args": ["--maketest"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
}
]
}
Binary file modified bin/hmckc.exe
Binary file not shown.
Binary file modified bin/hmckc_j.exe
Binary file not shown.
Binary file modified bin/isolink.exe
Binary file not shown.
Binary file modified bin/pceas.exe
Binary file not shown.
Binary file modified bin/xpcm.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,6 @@ ver 0.23 2006/03/16
ver 0.47 2017/05/13
5ビットPCMの方法とファイルフォーマットを変更。(PD4は変わらず)。
PCM再生開始時の処理の変更。

ver 0.48 2017/05/18
xpcm.exeでの終端の取扱いを変更した。
2 changes: 1 addition & 1 deletion src/wav2pd4/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OBJS = xpcm.o
INSTDIR = ../../bin


CFLAGS = -Wall
CFLAGS = -Wall -g
LDFLAGS =

CC = gcc
Expand Down
Loading

0 comments on commit 003aff7

Please sign in to comment.