Codechange: be consistent in naming the paint function Paint()
Also move this function to be a class member. This to allow further deduplicating of code in a later commit.
This commit is contained in:
committed by
Patric Stout
parent
761efbb457
commit
790fa7102e
@@ -174,6 +174,16 @@ protected:
|
||||
*/
|
||||
virtual void UnlockVideoBuffer() {}
|
||||
|
||||
/**
|
||||
* Paint the window.
|
||||
*/
|
||||
virtual void Paint() {}
|
||||
|
||||
/**
|
||||
* Thread function for threaded drawing.
|
||||
*/
|
||||
virtual void PaintThread() {}
|
||||
|
||||
std::chrono::steady_clock::duration GetGameInterval()
|
||||
{
|
||||
return std::chrono::milliseconds(MILLISECONDS_PER_TICK);
|
||||
|
||||
Reference in New Issue
Block a user