SDL_GetTicks() => GFX2_GetTicks()

Signed-off-by: Thomas Bernard <miniupnp@free.fr>
This commit is contained in:
Thomas Bernard
2018-05-28 12:31:42 +02:00
parent a6c948b27e
commit fb51c1bb1c
12 changed files with 80 additions and 49 deletions

View File

@@ -2,6 +2,7 @@
*/
/* Grafx2 - The Ultimate 256-color bitmap paint program
Copyright 2018 Thomas Bernard
Copyright 2007 Adrien Destugues
Copyright 1996-2001 Sunset Design (Guillaume Dorme & Karl Maritaud)
@@ -23,6 +24,9 @@
/// Miscellanous unsorted functions.
//////////////////////////////////////////////////////////////////////////////
#ifndef MISC_H__
#define MISC_H__
#include "struct.h"
#include "global.h"
@@ -149,3 +153,8 @@ int Convert_videomode_arg(const char *argument);
int Popcount_word(word x);
int Popcount_dword(dword x);
/// Return a number of milliseconds
dword GFX2_GetTicks(void);
#endif