1
0
Fork 0

puInitialize returns nothing.

This commit is contained in:
fredb 2008-05-20 06:35:37 +00:00
parent 580ebf637b
commit cc8c65a6ee
2 changed files with 2 additions and 2 deletions

View file

@ -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();

View file

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