Implement she::clock_value() with GetTickCount() on Win32 when we use Skia

This commit is contained in:
David Capello 2015-05-19 14:08:18 -03:00
parent c21a84c9c9
commit 524930fe54

View File

@ -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