C++03 compatibility (#736)
* Use C++03 compatible constructors * Remove conflicting definitions
This commit is contained in:
parent
7a90b9102a
commit
dc8be6c0ab
27 changed files with 260 additions and 346 deletions
|
|
@ -9,7 +9,7 @@ void ReadOnlyTest()
|
|||
char path[MAX_PATH], Filename[MAX_PATH];
|
||||
|
||||
GetPrefPath(path, MAX_PATH);
|
||||
snprintf(Filename, DVL_MAX_PATH, "%sDiablo1ReadOnlyTest.foo", path);
|
||||
snprintf(Filename, MAX_PATH, "%sDiablo1ReadOnlyTest.foo", path);
|
||||
|
||||
f = fopen(Filename, "wt");
|
||||
if (!f) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue