mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-15 19:52:05 +00:00
Implement she::clock_value() with GetTickCount() on Win32 when we use Skia
This commit is contained in:
parent
c21a84c9c9
commit
524930fe54
@ -48,7 +48,11 @@ void clear_keyboard_buffer()
|
|||||||
int clock_value()
|
int clock_value()
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
|
#if _WIN32
|
||||||
|
return (int)GetTickCount();
|
||||||
|
#else
|
||||||
return 0; // clock_var;
|
return 0; // clock_var;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace she
|
} // namespace she
|
||||||
|
Loading…
Reference in New Issue
Block a user