mirror of
https://github.com/libretro/PUAE.git
synced 2024-11-23 07:49:45 +00:00
Merge pull request #43 from rofl0r/fix271b11
a2091.c: export some functions which are now used from cdtv.c
This commit is contained in:
commit
d29250fdbb
@ -251,14 +251,14 @@ static void INT2 (void)
|
||||
uae_int_requested |= 2;
|
||||
}
|
||||
|
||||
static void scsi_dmac_start_dma (void)
|
||||
void scsi_dmac_start_dma (void)
|
||||
{
|
||||
#if A3000_DEBUG > 0 || A2091_DEBUG > 0
|
||||
write_log (_T("DMAC DMA started, ADDR=%08X, LEN=%08X words\n"), dmac_acr, dmac_wtc);
|
||||
#endif
|
||||
dmac_dma = 1;
|
||||
}
|
||||
static void scsi_dmac_stop_dma (void)
|
||||
void scsi_dmac_stop_dma (void)
|
||||
{
|
||||
dmac_dma = 0;
|
||||
dmac_istr &= ~ISTR_E_INT;
|
||||
@ -1657,7 +1657,7 @@ static void *scsi_thread (void *null)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void init_scsi (void)
|
||||
void init_scsi (void)
|
||||
{
|
||||
if (!scsi_thread_running) {
|
||||
scsi_thread_running = 1;
|
||||
|
@ -92,7 +92,7 @@ extern int isvsync_chipset (void);
|
||||
extern int isvsync_rtg (void);
|
||||
|
||||
|
||||
void getgfxoffset (int *dxp, int *dyp, int *mxp, int *myp)
|
||||
void getgfxoffset (float *dxp, float *dyp, float *mxp, float *myp)
|
||||
{
|
||||
*dxp = 0;
|
||||
*dyp = 0;
|
||||
|
@ -10,7 +10,7 @@
|
||||
* Copyright 2010-2013 Mustafa TUFAN
|
||||
*/
|
||||
|
||||
void getgfxoffset (int *dxp, int *dyp, int *mxp, int *myp);
|
||||
void getgfxoffset (float *dxp, float *dyp, float *mxp, float *myp);
|
||||
int isfullscreen (void);
|
||||
void fetch_configurationpath (TCHAR *out, int size);
|
||||
TCHAR* buf_out (TCHAR *buffer, int *bufsize, const TCHAR *format, ...);
|
||||
|
Loading…
Reference in New Issue
Block a user