puInitialize returns nothing.
This commit is contained in:
parent
580ebf637b
commit
cc8c65a6ee
2 changed files with 2 additions and 2 deletions
|
@ -111,7 +111,7 @@ void WindowSystemAdapter::puGetWindowSize(int* width, int* height)
|
|||
*height = traits->height;
|
||||
}
|
||||
|
||||
bool WindowSystemAdapter::puInitialize()
|
||||
void WindowSystemAdapter::puInitialize()
|
||||
{
|
||||
puSetWindowFuncs(puGetWindow, 0, puGetWindowSize, 0);
|
||||
puRealInit();
|
||||
|
|
|
@ -119,7 +119,7 @@ public:
|
|||
/** Initialize the plib pui interface library. This might happen
|
||||
*in another thread and may be deferred.
|
||||
*/
|
||||
virtual bool puInitialize();
|
||||
virtual void puInitialize();
|
||||
/** Returns true if pui initialization has finished.
|
||||
*/
|
||||
template<typename T>
|
||||
|
|
Loading…
Reference in a new issue