Quote: "1>------ Build started: Project: Welcome Screen, Configuration: Debug Win32 ------
1>Compiling...
1>Main.cpp
1>Linking...
1>libcpmtd.lib(xdebug.obj) : warning LNK4098: defaultlib 'libcmt.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
1>libcpmtd.lib(xdebug.obj) : error LNK2019: unresolved external symbol __malloc_dbg referenced in function "void * __cdecl operator new(unsigned int,struct std::_DebugHeapTag_t const &,char *,int)" (??2@YAPAXIABU_DebugHeapTag_t@std@@PADH@Z)
1>libcpmtd.lib(xdebug.obj) : error LNK2019: unresolved external symbol __free_dbg referenced in function "void __cdecl operator delete(void *,struct std::_DebugHeapTag_t const &,char *,int)" (??3@YAXPAXABU_DebugHeapTag_t@std@@PADH@Z)
1>libcpmtd.lib(stdthrow.obj) : error LNK2019: unresolved external symbol __CrtDbgReportW referenced in function "void __cdecl std::_Debug_message(wchar_t const *,wchar_t const *,unsigned int)" (?_Debug_message@std@@YAXPB_W0I@Z)
1>Debug\Welcome Screen.exe : fatal error LNK1120: 3 unresolved externals
1>Build log was saved at "file://c:\Users\Rei\Documents\Visual Studio 2008\Projects\Welcome Screen\Welcome Screen\Debug\BuildLog.htm"
1>Welcome Screen - 4 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped =========="
void SplashScreen(string title)
{
char* introText = (char*)title.c_str();
dbSetTextFont( "times new roman" );
dbSetTextSize(50);
dbText(dbScreenWidth()/2-dbTextWidth(introText)/2,dbScreenHeight()/2, introText );
dbPrint ( "" );
dbColorBackdrop( dbRGB(0,0,0) );
//Camera Position and Variables
dbPositionCamera ( 0, 0, -5000 );
float fCameraAngleX = 0.0f;
float fCameraAngleY = 0.0f;
dbSetCameraRange(0.001,30000);
dbSuspendForKey();
dbCLS();
}