mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-27 21:19:18 +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()
|
||||
{
|
||||
// TODO
|
||||
#if _WIN32
|
||||
return (int)GetTickCount();
|
||||
#else
|
||||
return 0; // clock_var;
|
||||
#endif
|
||||
}
|
||||
|
||||
} // namespace she
|
||||
|
Loading…
Reference in New Issue
Block a user