mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-09-27 14:19:54 +03:00
VS2010 buildfixes.
The main issue was mostly that we have to build C files as C++ in some cases, and extern "C" wasn't being used everywhere, so linker errors popped up. The rest is the usual tedious VS2010 stuff like casting void* to other stuff, so this commit as a whole is pretty boring!
This commit is contained in:
@@ -108,5 +108,5 @@ const char* textbook_store(Textbook* textbook, const char* text)
|
||||
return "";
|
||||
}
|
||||
|
||||
return textbook_store_raw(textbook, text, SDL_strlen(text)+1);
|
||||
return (const char*) textbook_store_raw(textbook, text, SDL_strlen(text)+1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user