More fixes.
git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@63 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
parent
bc661af3b9
commit
494eadf95c
|
@ -226,9 +226,9 @@ void remoteInit()
|
||||||
remoteInitFnc();
|
remoteInitFnc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void remotePutPacket(char *packet)
|
void remotePutPacket(const char *packet)
|
||||||
{
|
{
|
||||||
char *hex = "0123456789abcdef";
|
const char *hex = "0123456789abcdef";
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
|
|
||||||
size_t count = strlen(packet);
|
size_t count = strlen(packet);
|
||||||
|
|
|
@ -32,4 +32,4 @@ void interp_reset(int ch);
|
||||||
inline void interp_push(int ch, int sample);
|
inline void interp_push(int ch, int sample);
|
||||||
inline int interp_pop(int ch, double rate); */
|
inline int interp_pop(int ch, double rate); */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue