53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
/*
|
|
* sdl/init.c - SDL library specific port code - initialisation routines
|
|
*
|
|
* Copyright (c) 2012 Tomasz Krasuski
|
|
* Copyright (C) 2012 Atari800 development team (see DOC/CREDITS)
|
|
*
|
|
* This file is part of the Atari800 emulator project which emulates
|
|
* the Atari 400, 800, 800XL, 130XE, and 5200 8-bit computers.
|
|
*
|
|
* Atari800 is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Atari800 is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Atari800; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <SDL.h>
|
|
|
|
#include "sdl/init.h"
|
|
#include "atari.h"
|
|
#include "log.h"
|
|
#include "platform.h"
|
|
|
|
int SDL_INIT_Initialise(void)
|
|
{
|
|
if (SDL_Init(0) != 0) {
|
|
Log_print("SDL_Init FAILED: %s", SDL_GetError());
|
|
Log_flushlog();
|
|
return FALSE;
|
|
}
|
|
atexit(SDL_Quit);
|
|
return TRUE;
|
|
}
|
|
|
|
void SDL_INIT_Exit(void)
|
|
{
|
|
SDL_Quit();
|
|
}
|
|
|
|
double PLATFORM_Time(void)
|
|
{
|
|
return SDL_GetTicks() * 1e-3;
|
|
}
|
|
|