Frictional Games Forum (read-only)

Full Version: Anyone made a VS solution for OALWrapper yet?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anyone made a VS solution for OALWrapper yet?


Edit: nvm, I made one myself.
Do you mind contributing your VS project? (any any other fixes to HPL1Engine an Overture that are needed)?
(05-14-2010, 06:48 PM)Urkle Wrote: [ -> ]Do you mind contributing your VS project? (any any other fixes to HPL1Engine an Overture that are needed)?

http://www.treesoft.dk/penumbra/OALWrapperSolution.zip

I've got references to my OpenAL SDK in Program Files.



In HPL1Engine I had to change this line in SDKTexture.cpp to compile

From:
Code:
int lSizeDiv = (int)pow((int)2,(int)mlSizeLevel);
To:
Code:
int lSizeDiv = (int)pow((float)2,(int)mlSizeLevel);


Also, I can't compile Overture, as it can't find GLaux.lib... I'm on Windows 7, and it's been deprecated and is not included in the Windows SDK anymore.
Thanks.. I've included them and pushed the changes to the repositories.