mirror of https://github.com/PCSX2/pcsx2.git
cdvdgigaherz: Remove CDVDabout and SysMessage
It's not accessible from PCSX2. More importantly, I don't want to port it.
This commit is contained in:
parent
fb3580efa1
commit
9c643ae9ca
|
@ -91,17 +91,6 @@ u32 CALLBACK PS2EgetLibVersion2(u32 type)
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Utility Functions //
|
||||
|
||||
void SysMessage(char *fmt, ...)
|
||||
{
|
||||
va_list list;
|
||||
char tmp[512];
|
||||
|
||||
va_start(list, fmt);
|
||||
vsprintf(tmp, fmt, list);
|
||||
va_end(list);
|
||||
MessageBox(0, tmp, "cdvdGigaherz Msg", 0);
|
||||
}
|
||||
|
||||
u8 __inline dec_to_bcd(u8 dec)
|
||||
{
|
||||
return ((dec / 10) << 4) | (dec % 10);
|
||||
|
@ -570,11 +559,6 @@ void CALLBACK CDVDconfigure()
|
|||
configure();
|
||||
}
|
||||
|
||||
void CALLBACK CDVDabout()
|
||||
{
|
||||
SysMessage("%s %d.%d", LibName, revision, build);
|
||||
}
|
||||
|
||||
s32 CALLBACK CDVDtest()
|
||||
{
|
||||
return 0;
|
||||
|
|
|
@ -18,8 +18,7 @@ EXPORTS
|
|||
CDVDctrlTrayClose @18
|
||||
CDVDconfigure @19
|
||||
CDVDtest @20
|
||||
CDVDabout @21
|
||||
CDVDnewDiskCB @22
|
||||
CDVDnewDiskCB @22
|
||||
CDVDgetBuffer2 @23
|
||||
CDVDreadSector @24
|
||||
CDVDgetDualInfo @25
|
||||
|
|
Loading…
Reference in New Issue