CE patch (from <Someone>)
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
/* SCCS Id: @(#)cesound.c 3.4 $Date$ */
|
||||
/* Copyright (c) NetHack PC Development Team 1993 */
|
||||
/* NetHack may be freely redistributed. See license for details. */
|
||||
/* */
|
||||
/*
|
||||
* cesound.c - Windows NT NetHack sound support
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include "hack.h"
|
||||
#include <mmsystem.h>
|
||||
|
||||
#ifdef USER_SOUNDS
|
||||
|
||||
void play_usersound(filename, volume)
|
||||
const char* filename;
|
||||
int volume;
|
||||
{
|
||||
TCHAR wbuf[MAX_PATH+1];
|
||||
/* pline("play_usersound: %s (%d).", filename, volume); */
|
||||
ZeroMemory(wbuf, sizeof(wbuf));
|
||||
(void)sndPlaySound(NH_A2W(filename, wbuf, MAX_PATH), SND_ASYNC | SND_NODEFAULT);
|
||||
}
|
||||
|
||||
#endif /*USER_SOUNDS*/
|
||||
/* cesound.c */
|
||||
Reference in New Issue
Block a user